init notify

This commit is contained in:
ranfdev
2023-10-08 15:57:09 +02:00
parent c3de2224a8
commit 52ea57057e
40 changed files with 13845 additions and 552 deletions

View File

@ -1,12 +1,14 @@
mod application;
#[rustfmt::skip]
mod config;
mod window;
mod async_utils;
mod subscription;
pub mod widgets;
use gettextrs::{gettext, LocaleCategory};
use gtk::{gio, glib};
use self::application::ExampleApplication;
use self::application::NotifyApplication;
use self::config::{GETTEXT_PACKAGE, LOCALEDIR, RESOURCES_FILE};
fn main() -> glib::ExitCode {
@ -23,6 +25,6 @@ fn main() -> glib::ExitCode {
let res = gio::Resource::load(RESOURCES_FILE).expect("Could not load gresource file");
gio::resources_register(&res);
let app = ExampleApplication::default();
let app = NotifyApplication::default();
app.run()
}