nhentairs/src/main.rs

15 lines
255 B
Rust
Raw Normal View History

2023-10-28 00:08:10 +00:00
mod api;
2020-09-12 12:26:07 +00:00
mod commands;
2023-10-28 00:11:16 +00:00
mod structs;
mod utils;
2020-09-12 12:26:07 +00:00
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()
.expect("failed to build tokio runtime")
2020-12-02 04:55:32 +00:00
.block_on(commands::run());
2020-09-12 12:26:07 +00:00
}