16 lines
No EOL
204 B
Rust
16 lines
No EOL
204 B
Rust
|
|
|
|
pub mod core;
|
|
pub mod modules;
|
|
use std::process::Output;
|
|
|
|
use crate::core::botinstance::BotInstance;
|
|
|
|
#[tokio::main]
|
|
pub async fn main() {
|
|
|
|
let bot = BotInstance::init();
|
|
|
|
bot.runner().await;
|
|
|
|
} |