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

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