diff options
Diffstat (limited to 'azalea/examples/testbot')
| -rw-r--r-- | azalea/examples/testbot/main.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/azalea/examples/testbot/main.rs b/azalea/examples/testbot/main.rs index 8a35a281..8fb96411 100644 --- a/azalea/examples/testbot/main.rs +++ b/azalea/examples/testbot/main.rs @@ -20,8 +20,6 @@ //! only have this on if the bot has operator permissions, otherwise it'll //! just spam the server console unnecessarily. -#![feature(trivial_bounds)] - mod commands; pub mod killaura; @@ -34,7 +32,7 @@ use azalea::{ use commands::{CommandSource, register_commands}; use parking_lot::Mutex; -#[tokio::main] +#[tokio::main(flavor = "current_thread")] async fn main() { let args = parse_args(); |
