mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 01:29:57 +00:00
13 lines
191 B
Rust
13 lines
191 B
Rust
mod app;
|
|
mod profile;
|
|
|
|
use app::App;
|
|
use gtk::glib::ExitCode;
|
|
|
|
fn main() -> ExitCode {
|
|
match gtk::init() {
|
|
Ok(_) => App::new().run(),
|
|
Err(_) => ExitCode::FAILURE,
|
|
}
|
|
}
|