#![ cfg_attr( not( feature = "enabled" ), allow( unused ) ) ]
#![ doc( html_logo_url = "https://raw.githubusercontent.com/Wandalen/wTools/master/asset/img/logo_v3_trans_square.png" ) ]
#[ cfg( any( feature = "output", feature = "output_passthrough" ) ) ]
pub mod output;
#[ cfg( feature = "cli_help_template" ) ]
pub mod help;
pub mod dependency
{
#[ cfg( feature = "enabled" ) ]
pub use ::strs_tools;
}
pub mod own
{
#[ cfg( any( feature = "output", feature = "output_passthrough" ) ) ]
pub use super::output::orphan::*;
#[ cfg( feature = "cli_help_template" ) ]
pub use super::help::orphan::*;
}
pub mod orphan
{
}
pub mod exposed
{
#[ allow( unused_imports ) ]
pub use super::own::*;
}
pub mod prelude
{
#[ cfg( any( feature = "output", feature = "output_passthrough" ) ) ]
pub use super::output::orphan::*;
#[ cfg( feature = "cli_help_template" ) ]
pub use super::help::orphan::*;
}