cosmic-applets/cosmic-applet-bluetooth/src/main.rs
2024-05-06 21:56:50 +02:00

13 lines
367 B
Rust

// Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: GPL-3.0-only
const VERSION: &str = env!("CARGO_PKG_VERSION");
fn main() -> cosmic::iced::Result {
tracing_subscriber::fmt::init();
let _ = tracing_log::LogTracer::init();
tracing::info!("Starting bluetooth applet with version {VERSION}");
cosmic_applet_bluetooth::run()
}