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/settings/mod.rs

13 lines
189 B
Rust

use serenity::framework::standard::macros::group;
use get::GET_COMMAND;
use set::SET_COMMAND;
mod get;
mod set;
#[group]
#[commands(set, get)]
#[prefix("settings")]
pub struct Settings;