#![deny( missing_docs )]
#![allow( unused_imports )]
#![allow( clippy::needless_pass_by_value )]
#![allow( clippy::missing_errors_doc )]
#![allow( clippy::too_many_lines )]
#![allow( clippy::manual_let_else )]
#![allow( clippy::unnecessary_wraps )]
#[ cfg( feature = "enabled" ) ]
pub mod commands;
#[ cfg( feature = "enabled" ) ]
pub mod handlers;
#[ cfg( feature = "enabled" ) ]
pub mod state;
#[ cfg( feature = "enabled" ) ]
pub mod error;
#[ cfg( feature = "enabled" ) ]
pub mod repl;
#[ cfg( feature = "enabled" ) ]
pub mod prelude
{
#[ doc( inline ) ]
pub use super::
{
commands,
handlers,
state,
error,
repl,
};
}