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

21 lines
321 B
Rust
Raw Normal View History

2024-02-06 23:35:52 +04:00
use gtk4 as gtk;
2023-09-17 21:21:14 +04:00
2024-02-06 23:35:52 +04:00
use gtk::prelude::*;
2023-09-17 21:21:14 +04:00
2024-02-06 23:35:52 +04:00
mod controller;
mod model;
mod view;
2024-03-10 12:54:32 +04:00
use controller::*;
2024-08-09 15:13:04 +04:00
use view::ui::*;
2023-09-17 21:21:14 +04:00
2024-07-29 01:10:34 +04:00
#[tokio::main]
async fn main() {
let app: adw::Application = adw::Application::builder()
.application_id("com.laboratory-work")
2024-02-06 23:35:52 +04:00
.build();
2023-09-17 21:21:14 +04:00
2024-02-06 23:35:52 +04:00
app.connect_activate(ui);
app.run();
}