add help for daily commands

This commit is contained in:
2024-12-10 17:59:30 -05:00
parent 8ce37d83ab
commit 23bdcffc8c

View File

@@ -57,6 +57,7 @@ where
Ok(())
}
/// Tells you what your current daily streak is
#[poise::command(slash_command, prefix_command)]
pub async fn streak(ctx: Context<'_>) -> Result<(), Error> {
let db = &ctx.data().database;
@@ -120,6 +121,7 @@ async fn do_claim(ctx: Context<'_>) -> Result<(), Error> {
Ok(())
}
// Redeem daily tokens.
#[poise::command(slash_command, prefix_command)]
pub async fn claim(ctx: Context<'_>) -> Result<(), Error> {
do_claim(ctx).await