2024-02-18 14:32:58 +00:00

16 lines
319 B
Rust

use crate::{Context, Error};
pub mod set;
pub mod unset;
/// Configure ephemeral setup
#[poise::command(
slash_command,
rename = "ephemeral",
identifying_name = "ephemeral_confirmations",
guild_only = true
)]
pub async fn ephemeral_confirmations(_ctx: Context<'_>) -> Result<(), Error> {
Ok(())
}