Remove todo-app code

This commit is contained in:
2024-06-20 21:08:55 -04:00
Unverified
parent f958cd36fa
commit ca99c97009
3 changed files with 74 additions and 426 deletions

View File

@@ -1,11 +1,11 @@
use realm_client::Realm;
use realm_client::RealmApp;
pub fn main() -> iced::Result {
tracing_subscriber::fmt::init();
iced::program(Realm::title, Realm::update, Realm::view)
.load(Realm::load)
.subscription(Realm::subscription)
iced::program(RealmApp::title, RealmApp::update, RealmApp::view)
.load(RealmApp::load)
.subscription(RealmApp::subscription)
.font(include_bytes!("../assets/icons.ttf").as_slice())
.window_size((1280.0, 720.0))
.run()