mod api;
mod app;
#[cfg(feature = "server")]
mod server;
fn main() {
server::init_tracing();
dioxus::launch(app::App);
}