use crate::bot::{Command, Context}; use async_trait::async_trait; const HELP: &str = concat!( "=- \x1d\x02Überbot\x0f ", env!("CARGO_PKG_VERSION"), " -=\r\n", " * waifu * grab [count] \r\n", " * owo/mock/leet [user] * quot \r\n", " * ev * qsearch \r\n", " - This bot can also resolve HTML titles, Spotify links and a subset of sed expressions." ); pub struct Help; #[async_trait] impl Command for Help { async fn execute(&mut self, _msg: Context<'_>) -> anyhow::Result { Ok(HELP.into()) } }