aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: e4f20143bf3b81f36f4dc38471bb8c15b0485248 (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(false).expect("initializing logging");
    thulani::bot::run().await
}