blob: a093bb7dbfdce5c0f2db9fe174119ab4d95db2c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
use modlist::{config::Cfg, input::get_input};
#[tokio::main]
async fn main() {
let config = Cfg::init("config.toml").unwrap();
//TODO Error Handling
get_input(config).await.unwrap();
}
|