rubot/src/lib.rs
2026-07-29 18:46:10 +00:00

9 lines
128 B
Rust

#![forbid(unsafe_code)]
pub mod bot;
pub mod config;
pub mod irc;
pub fn log(msg: &str) {
eprintln!("[rustbot] {msg}");
}