aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: db2204741ca59f77b1ea9f40723e1e866208b489 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(try_trait_v2)]
#![feature(pattern)]
#![feature(concat_idents)]
#![feature(associated_type_defaults)]
#![feature(box_patterns)]
#![allow(deprecated)]

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    thulani::log_setup::init();
    thulani::bot::run().await
}