Implemented - Switch reacts to burrow socket and network changes - meson as build system - Basic diagnostics to ensure burrow is installed properly - Flatpak / Meson Building
11 lines
133 B
Rust
11 lines
133 B
Rust
use anyhow::Result;
|
|
|
|
pub mod components;
|
|
mod diag;
|
|
|
|
// Generated using meson
|
|
mod config;
|
|
|
|
fn main() {
|
|
components::App::run();
|
|
}
|