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