feat(main): main function is async now

This commit is contained in:
doryan 2024-07-29 01:10:34 +04:00
parent b7b890ecb3
commit 0aab9e9ebe

View File

@ -9,7 +9,8 @@ mod view;
use controller::*;
use view::view::*;
fn main() {
#[tokio::main]
async fn main() {
let app: adw::Application = adw::Application::builder()
.application_id("com.github.gtk-rs.examples.basic")
.build();