#[cfg(not(target_arch = "wasm32"))]
#[tokio::main(flavor = "multi_thread")]
pub async fn main() -> anyhow::Result<()> {
noosphere_cli::main().await?;
Ok(())
}
#[cfg(target_arch = "wasm32")]
#[allow(unused_must_use)]
pub fn main() {
noosphere_cli::main();
}