Crate ferris_bot[−][src]
Expand description
ferris bot is a discord bot written in rust. this library contains some basic things for the bot like commands. you should refer to this documentation if you want to extend the bot. since the bot uses serenity you should also refer to its documentation.
Examples
loading a config file
use ferris_bot::config::conf::load_config; fn main() { let config = load_config("example_config.toml").unwrap(); }