9 lines
128 B
Rust
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}");
|
|
}
|