2024-03-14 18:47:41 +01:00
|
|
|
const VERSION: &str = env!("CARGO_PKG_VERSION");
|
2023-02-08 18:38:09 -05:00
|
|
|
|
|
|
|
|
fn main() -> cosmic::iced::Result {
|
2024-01-18 18:16:37 -05:00
|
|
|
tracing_subscriber::fmt::init();
|
|
|
|
|
let _ = tracing_log::LogTracer::init();
|
2023-02-08 18:38:09 -05:00
|
|
|
|
2024-03-14 18:47:41 +01:00
|
|
|
tracing::info!("Starting bluetooth applet with version {VERSION}");
|
2023-02-08 18:38:09 -05:00
|
|
|
|
2024-03-14 18:47:41 +01:00
|
|
|
cosmic_applet_bluetooth::run()
|
2023-02-08 18:38:09 -05:00
|
|
|
}
|