nhentairs/src/main.rs

11 lines
121 B
Rust
Raw Normal View History

2020-09-12 12:26:07 +00:00
mod utils;
mod structs;
mod commands;
extern crate tokio;
#[tokio::main]
async fn main() {
commands::run().await
}