Adding servers, fetching servers on the client

This commit is contained in:
2024-10-12 14:57:54 -04:00
Unverified
parent c333bf1b49
commit 87b3125f8e
6 changed files with 262 additions and 120 deletions

View File

@@ -28,6 +28,6 @@ async fn main() -> eframe::Result {
eframe::run_native(
"Realm",
native_options,
Box::new(|cc| Ok(Box::new(realm_client::app::TemplateApp::new(cc)))),
Box::new(|cc| Ok(Box::new(realm_client::app::RealmApp::new(cc)))),
)
}