diff --git a/src/commands/general/mod.rs b/src/commands/general/mod.rs index 5fa1d95..c322c73 100644 --- a/src/commands/general/mod.rs +++ b/src/commands/general/mod.rs @@ -1,13 +1,11 @@ mod joke; mod members; -mod modrinth; mod rory; mod say; mod stars; pub use joke::joke; pub use members::members; -pub use modrinth::modrinth; pub use rory::rory; pub use say::say; pub use stars::stars; diff --git a/src/commands/general/modrinth.rs b/src/commands/general/modrinth.rs deleted file mode 100644 index 40879e8..0000000 --- a/src/commands/general/modrinth.rs +++ /dev/null @@ -1,8 +0,0 @@ -use crate::Context; - -use color_eyre::eyre::Result; - -#[poise::command(slash_command, prefix_command)] -pub async fn modrinth(ctx: Context<'_>) -> Result<()> { - todo!() -} diff --git a/src/commands/mod.rs b/src/commands/mod.rs index bef9edd..67e2b1e 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -10,7 +10,6 @@ pub fn to_global_commands() -> Vec> { vec![ general::joke(), general::members(), - general::modrinth(), general::rory(), general::say(), general::stars(),