1 2 3 4 5 6 7 8 9 10 11
#[cfg(not(target_arch = "wasm32"))] use glues_tui::cli; #[cfg(not(target_arch = "wasm32"))] #[tokio::main] async fn main() -> color_eyre::Result<()> { cli::run().await } #[cfg(target_arch = "wasm32")] fn main() {}