forked from discord/hal-9000
Move randomizer struct to models folder
This commit is contained in:
parent
450aca74c2
commit
d31513d37b
|
|
@ -4,7 +4,7 @@ use rand::rngs::StdRng;
|
||||||
use rand::SeedableRng;
|
use rand::SeedableRng;
|
||||||
use rand::seq::IndexedRandom;
|
use rand::seq::IndexedRandom;
|
||||||
|
|
||||||
use crate::hal::commands::mario_kart_randomizer::MarioKartRandomizer;
|
use crate::hal::models::mario_kart_randomizer::MarioKartRandomizer;
|
||||||
|
|
||||||
#[poise::command(slash_command, prefix_command)]
|
#[poise::command(slash_command, prefix_command)]
|
||||||
async fn bikeshed(ctx: ManifoldContext<'_>) -> ManifoldResult<()> {
|
async fn bikeshed(ctx: ManifoldContext<'_>) -> ManifoldResult<()> {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
mod utility;
|
mod utility;
|
||||||
mod fun;
|
mod fun;
|
||||||
mod mario_kart_randomizer;
|
|
||||||
|
|
||||||
use manifold::{ManifoldData};
|
use manifold::{ManifoldData};
|
||||||
use manifold::error::{ManifoldError};
|
use manifold::error::{ManifoldError};
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
pub mod reminder;
|
pub mod reminder;
|
||||||
|
pub mod mario_kart_randomizer;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue