Clean up imports

This commit is contained in:
Joscha 2024-12-29 01:18:34 +01:00
parent 63c785493e
commit f6d25fbfcf
2 changed files with 6 additions and 3 deletions

View file

@ -7,8 +7,6 @@ pub mod clap;
use std::{future::Future, sync::Arc};
use async_trait::async_trait;
use bang::{General, Global, Specific};
use basic::{Described, Prefixed};
use euphoxide::{
api::{self, Data, Message, MessageId, SendEvent, SendReply},
client::{
@ -18,6 +16,11 @@ use euphoxide::{
};
use euphoxide_client::{Client, MultiClient, MultiClientEvent};
use self::{
bang::{General, Global, Specific},
basic::{Described, Prefixed},
};
#[non_exhaustive]
pub struct Context<E = euphoxide::Error> {
pub commands: Arc<Commands<E>>,