nhentairs/src/main.rs

12 lines
163 B
Rust
Raw Normal View History

2020-09-12 12:26:07 +00:00
mod utils;
mod structs;
mod commands;
extern crate tokio;
2020-12-02 04:55:32 +00:00
fn main() {
tokio::runtime::Runtime::new()
.unwrap()
.block_on(commands::run());
2020-09-12 12:26:07 +00:00
}