Files
reminder-bot/src/commands/allowed_dm/mod.rs
2024-02-24 15:02:34 +00:00

12 lines
280 B
Rust

pub mod set;
pub mod unset;
use crate::{Context, Error};
/// Configure whether other users can set reminders to your direct messages
#[poise::command(slash_command, rename = "dm")]
#[cfg(not(test))]
pub async fn allowed_dm(_ctx: Context<'_>) -> Result<(), Error> {
Ok(())
}