You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2b-rs/src/commands/weeb/hololive/polka.rs

15 lines
452 B
Rust

use crate::commands::weeb::post_random_media;
use serenity::client::Context;
use serenity::framework::standard::macros::command;
use serenity::framework::standard::CommandResult;
use serenity::model::channel::Message;
#[command]
#[description("Posts a random pol")]
#[usage("")]
#[aliases("pol", "omarun", "omapol")]
#[bucket("general")]
async fn polka(ctx: &Context, msg: &Message) -> CommandResult {
post_random_media(ctx, msg, "polka").await
}