uwubot 0.1.0

discord bot for uwuifying text
Documentation
1
2
3
4
5
6
7
8
9
10
use color_eyre::eyre;

fn main() -> eyre::Result<()> {
    color_eyre::install()?;

    let bot = uwubot::Bot::new();
    bot.run()?;

    Ok(())
}