Yoda/src/main.rs

13 lines
191 B
Rust
Raw Normal View History

2024-10-02 02:14:00 +03:00
mod app;
mod profile;
2024-09-18 20:33:29 +03:00
2024-10-02 02:14:00 +03:00
use app::App;
use gtk::glib::ExitCode;
2024-10-03 19:46:13 +03:00
2024-09-30 02:00:14 +03:00
fn main() -> ExitCode {
match gtk::init() {
2024-11-08 08:43:02 +02:00
Ok(_) => App::new().run(),
Err(_) => ExitCode::FAILURE,
}
2024-09-20 18:02:10 +03:00
}