aboutsummaryrefslogtreecommitdiff
path: root/src/framework/standard/create_group.rs
diff options
context:
space:
mode:
authoracdenisSK <[email protected]>2018-03-29 12:10:43 +0200
committeracdenisSK <[email protected]>2018-03-29 12:11:23 +0200
commit4c05e828d5191975ef1a5e1ac581b646a69d2c25 (patch)
treefb583f88a1e5d192651b399aca1839f3f58e661e /src/framework/standard/create_group.rs
parentAdd a connection timeout (diff)
downloadserenity-4c05e828d5191975ef1a5e1ac581b646a69d2c25.tar.xz
serenity-4c05e828d5191975ef1a5e1ac581b646a69d2c25.zip
Refactor imports/exports to use nested groups and better formatting
Diffstat (limited to 'src/framework/standard/create_group.rs')
-rw-r--r--src/framework/standard/create_group.rs15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/framework/standard/create_group.rs b/src/framework/standard/create_group.rs
index c33f67a..e31e4eb 100644
--- a/src/framework/standard/create_group.rs
+++ b/src/framework/standard/create_group.rs
@@ -1,8 +1,15 @@
-pub use super::command::{Command, CommandGroup, CommandOptions, Error as CommandError};
+pub use super::command::{
+ Command,
+ CommandGroup,
+ CommandOptions,
+ Error as CommandError
+};
pub(crate) use super::command::CommandOrAlias;
-pub use super::create_help_command::{CreateHelpCommand};
-pub use super::create_command::{CreateCommand, FnOrCommand};
-pub use super::Args;
+pub use super::{
+ create_help_command::CreateHelpCommand,
+ create_command::{CreateCommand, FnOrCommand},
+ Args
+};
use client::Context;
use model::channel::Message;