feedsignal/crates/web/src/main.rs

13 lines
170 B
Rust
Raw Normal View History

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