mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-13 06:01:21 +00:00
17 lines
267 B
Rust
17 lines
267 B
Rust
mod app;
|
|
mod profile;
|
|
mod tool;
|
|
|
|
use app::App;
|
|
use profile::Profile;
|
|
|
|
use gtk::glib::ExitCode;
|
|
use std::rc::Rc;
|
|
|
|
fn main() -> ExitCode {
|
|
match gtk::init() {
|
|
Ok(_) => App::build(&Rc::new(Profile::new())).run(),
|
|
Err(_) => ExitCode::FAILURE,
|
|
}
|
|
}
|