This repository has been archived on 2025-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
AIT/src/main.rs

23 lines
335 B
Rust

use gtk4 as gtk;
extern crate gio;
use gtk::prelude::*;
mod controller;
mod model;
mod view;
use controller::*;
use view::ui::*;
#[tokio::main]
async fn main() {
let app: adw::Application = adw::Application::builder()
.application_id("org.gtk-rs.AIT")
.build();
app.connect_activate(ui);
app.run();
}