chore: deprecate modrinth command

Signed-off-by: seth <getchoo@tuta.io>
This commit is contained in:
seth 2023-12-03 18:51:59 -05:00
parent 358df91509
commit a8eb4a212a
No known key found for this signature in database
GPG key ID: D31BD0D494BBEE86
3 changed files with 0 additions and 11 deletions

View file

@ -1,13 +1,11 @@
mod joke; mod joke;
mod members; mod members;
mod modrinth;
mod rory; mod rory;
mod say; mod say;
mod stars; mod stars;
pub use joke::joke; pub use joke::joke;
pub use members::members; pub use members::members;
pub use modrinth::modrinth;
pub use rory::rory; pub use rory::rory;
pub use say::say; pub use say::say;
pub use stars::stars; pub use stars::stars;

View file

@ -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!()
}

View file

@ -10,7 +10,6 @@ pub fn to_global_commands() -> Vec<Command<Data, Report>> {
vec![ vec![
general::joke(), general::joke(),
general::members(), general::members(),
general::modrinth(),
general::rory(), general::rory(),
general::say(), general::say(),
general::stars(), general::stars(),