Add Prefixed command constructor

This commit is contained in:
Joscha 2023-01-26 20:00:04 +01:00
parent ac2a3cdd9f
commit 3bc50dcf26
2 changed files with 41 additions and 0 deletions

View file

@ -1,6 +1,7 @@
mod bang;
mod clap;
mod hidden;
mod prefixed;
use std::future::Future;
@ -12,6 +13,7 @@ use crate::conn::{self, ConnTx, Joined};
pub use self::bang::*;
pub use self::clap::*;
pub use self::hidden::*;
pub use self::prefixed::*;
use super::instance::InstanceConfig;