10 lines
274 B
Rust
10 lines
274 B
Rust
const VERSION: &str = env!("CARGO_PKG_VERSION");
|
|
|
|
fn main() -> cosmic::iced::Result {
|
|
tracing_subscriber::fmt::init();
|
|
let _ = tracing_log::LogTracer::init();
|
|
|
|
tracing::info!("Starting network applet with version {VERSION}");
|
|
|
|
cosmic_applet_network::run()
|
|
}
|