tools and kashi init

This commit is contained in:
2024-01-30 15:43:59 +01:00
parent 65950e3d50
commit a9006f1068
7 changed files with 44 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
use serenity::{all::Message, client::Context, framework::standard::{macros::command, CommandResult}};
use crate::commands::misc::check_msg;
#[command]
async fn kashi(ctx: &Context, msg: &Message) -> CommandResult {
check_msg(msg.reply(ctx, "Kashi lyrics platform integration").await);
Ok(())
}