use super::Command;
use frakti::{client_cyper::Bot, types::Message};
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct Help;
impl Command for Help {
const TRIGGER: &'static str = "help";
const HELP: &'static str = "查看帮助信息";
async fn execute(self, _bot: &Bot, _msg: Message, username: &str) -> String {
format!(include_str!("../messages/help.html"), username = username)
}
}