7 lines
103 B
Rust
7 lines
103 B
Rust
pub mod bot;
|
|
pub mod config;
|
|
pub mod irc;
|
|
|
|
pub fn log(msg: &str) {
|
|
eprintln!("[rustbot] {msg}");
|
|
}
|