mirror of
https://github.com/xzeldon/razer-battery-report.git
synced 2025-04-10 06:37:07 +03:00
22 lines
386 B
Rust
22 lines
386 B
Rust
#![windows_subsystem = "windows"]
|
|
|
|
use console::DebugConsole;
|
|
use tray::TrayApp;
|
|
|
|
mod console;
|
|
mod controller;
|
|
mod devices;
|
|
mod manager;
|
|
mod notify;
|
|
mod tray;
|
|
|
|
fn main() {
|
|
let console = DebugConsole::new("Razer Battery Report Debug Console");
|
|
|
|
std::env::set_var("RUST_LOG", "trace");
|
|
pretty_env_logger::init();
|
|
|
|
let checker = TrayApp::new(console);
|
|
checker.run();
|
|
}
|