use crate::App; pub fn main() { if let Err(e) = dotenvy::dotenv() { tracing::warn!("Error reading .env: {e}"); } dioxus::launch(App); }