2025-03-18 16:00:57 +13:00

9 lines
195 B
Rust

// Prevents additional console window on Windows in release, DO NOT REMOVE!!
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
mod config;
fn main() {
copybot_lib::run()
}