Files
LibreTunes-DX/src/server/main.rs
Ethan Girouard a6b635fef0
Some checks failed
Push Workflows / rustfmt (push) Successful in 5s
Push Workflows / tailwind-build (push) Successful in 5s
Push Workflows / test (push) Successful in 18s
Push Workflows / docs (push) Successful in 19s
Push Workflows / clippy (push) Successful in 15s
Push Workflows / build (push) Successful in 42s
Push Workflows / nix-build (push) Has been cancelled
Use separate server main in main.rs
2026-06-21 16:39:41 -04:00

10 lines
158 B
Rust

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