11 lines
121 B
Rust
11 lines
121 B
Rust
|
mod utils;
|
||
|
mod structs;
|
||
|
mod commands;
|
||
|
|
||
|
extern crate tokio;
|
||
|
|
||
|
#[tokio::main]
|
||
|
async fn main() {
|
||
|
commands::run().await
|
||
|
}
|