1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
use aok::Result; use tracing::info; #[static_init::constructor(0)] extern "C" fn init() { loginit::init() } // #[tokio::test] // async fn test() -> Result<()> { // info!("{}", 123456); // OK // } #[test] fn main() -> Result<()> { info!(">> test"); Ok(()) }