8 lines
171 B
Rust
8 lines
171 B
Rust
use crate::Context;
|
|
|
|
use color_eyre::eyre::Result;
|
|
|
|
#[poise::command(slash_command, prefix_command)]
|
|
pub async fn modrinth(ctx: Context<'_>) -> Result<()> {
|
|
todo!()
|
|
}
|