1 2 3 4 5 6 7 8 9 10 11
#![doc = include_str!("../README.md")] #[cfg(not(target_arch = "wasm32"))] #[tokio::main] async fn main() -> anyhow::Result<()> { lumina_cli::run().await } // Placeholder to allow compilation #[cfg(target_arch = "wasm32")] fn main() {}