blob: 2be1fefa03794550e1537e913fe4d1d262950cf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use crate::Data;
use color_eyre::eyre::Report;
use poise::Command;
mod copypasta;
mod teawiespam;
pub fn to_commands() -> Vec<Command<Data, Report>> {
vec![copypasta::copypasta(), teawiespam::teawiespam()]
}
|