2024-03-14 18:47:41 +01:00
|
|
|
const VERSION: &str = env!("CARGO_PKG_VERSION");
|
2022-02-01 16:46:25 -05:00
|
|
|
|
2022-12-09 15:31:19 -05:00
|
|
|
fn main() -> cosmic::iced::Result {
|
2024-01-18 18:16:37 -05:00
|
|
|
tracing_subscriber::fmt::init();
|
|
|
|
|
let _ = tracing_log::LogTracer::init();
|
2022-02-01 14:10:15 -05:00
|
|
|
|
2024-03-14 18:47:41 +01:00
|
|
|
tracing::info!("Starting network applet with version {VERSION}");
|
2022-08-16 14:36:31 -04:00
|
|
|
|
2024-03-14 18:47:41 +01:00
|
|
|
cosmic_applet_network::run()
|
2022-02-01 13:24:00 -05:00
|
|
|
}
|