use orchid_extension::entrypoint::ExtensionBuilder; use orchid_extension::tokio::tokio_main; use orchid_std::{MacroSystem, StdSystem}; #[tokio::main(flavor = "current_thread")] pub async fn main() { tokio_main(ExtensionBuilder::new("orchid-std::main").system(StdSystem).system(MacroSystem)).await }