1 2 3 4 5 6 7 8 9
#![feature(lazy_cell, let_chains)] #[macro_use] mod bot; mod conv; #[tokio::main(flavor = "current_thread")] async fn main() { bot::Bot::spawn().await; }