mirror of
https://github.com/eRgo35/lyra.git
synced 2026-02-04 04:16:11 +01:00
10 lines
304 B
Rust
10 lines
304 B
Rust
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(())
|
|
} |