Add command helpers

This commit is contained in:
Joscha 2024-12-27 17:26:26 +01:00
parent 8a7d414a01
commit 48f75a1efd
4 changed files with 332 additions and 0 deletions

View file

@ -1,3 +1,7 @@
mod bang;
mod hidden;
mod prefixed;
use std::future::Future;
use async_trait::async_trait;
@ -9,6 +13,8 @@ use euphoxide::{
},
};
pub use self::{bang::*, hidden::*, prefixed::*};
#[non_exhaustive]
pub struct Context {
pub conn: ClientConnHandle,