Move macro commands to own module

Lots of code here
This commit is contained in:
2022-09-12 16:45:00 +01:00
parent c8f646a8fa
commit 8f8235a86e
10 changed files with 618 additions and 603 deletions

View File

@ -0,0 +1,19 @@
use crate::{Context, Error};
pub mod delete;
pub mod list;
pub mod migrate;
pub mod record;
pub mod run;
/// Record and replay command sequences
#[poise::command(
slash_command,
rename = "macro",
guild_only = true,
default_member_permissions = "MANAGE_GUILD",
identifying_name = "macro_base"
)]
pub async fn macro_base(_ctx: Context<'_>) -> Result<(), Error> {
Ok(())
}