forcebot_rs/src/main.rs

20 lines
292 B
Rust
Raw Normal View History

2023-12-19 20:38:20 -05:00
pub mod core;
2023-12-22 09:21:49 -05:00
pub mod modules;
use std::process::Output;
2024-02-04 14:28:37 -05:00
use crate::core::botinstance::ArcBox;
2023-12-19 20:38:20 -05:00
use crate::core::botinstance::BotInstance;
2023-10-22 08:35:09 -04:00
#[tokio::main]
pub async fn main() {
2024-01-27 13:35:55 -05:00
let bot = BotInstance::init();
2023-12-19 20:38:20 -05:00
2024-02-04 14:28:37 -05:00
bot.clone().runner().await;
println!("ERROR : EXIT Game loop");
2023-12-19 21:43:03 -05:00
2023-10-22 08:35:09 -04:00
}