nhentairs/src/main.rs

14 lines
215 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() {
2021-01-06 16:28:09 +00:00
tokio::runtime::Builder::new_multi_thread()
.enable_all()
.build()
2020-12-02 04:55:32 +00:00
.unwrap()
.block_on(commands::run());
2020-09-12 12:26:07 +00:00
}