diff options
Diffstat (limited to 'src/framework/standard/create_help_command.rs')
| -rw-r--r-- | src/framework/standard/create_help_command.rs | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/src/framework/standard/create_help_command.rs b/src/framework/standard/create_help_command.rs index 06f9dda..3796139 100644 --- a/src/framework/standard/create_help_command.rs +++ b/src/framework/standard/create_help_command.rs @@ -1,9 +1,21 @@ -use super::command::{Help, HelpOptions, HelpFunction}; -pub use super::{Args, CommandGroup, CommandOptions, CommandError, HelpBehaviour}; +use super::command::{ + Help, + HelpOptions, + HelpFunction +}; +pub use super::{ + Args, + CommandGroup, + CommandOptions, + CommandError, + HelpBehaviour +}; use utils::Colour; -use std::fmt::Write; -use std::sync::Arc; +use std::{ + fmt::Write, + sync::Arc +}; pub struct CreateHelpCommand(pub HelpOptions, pub HelpFunction); |