nhentairs/src/main.rs

11 lines
121 B
Rust

mod utils;
mod structs;
mod commands;
extern crate tokio;
#[tokio::main]
async fn main() {
commands::run().await
}