burrow/burrow-gtk/src/main.rs
David Zhong 6990f90c2e
Implement Gtk Network Status (#165)
Implemented
- Switch reacts to burrow socket and network changes 
- meson as build system
- Basic diagnostics to ensure burrow is installed properly
- Flatpak / Meson Building
2024-01-26 01:10:24 -05:00

11 lines
133 B
Rust

use anyhow::Result;
pub mod components;
mod diag;
// Generated using meson
mod config;
fn main() {
components::App::run();
}