aboutsummaryrefslogtreecommitdiff
path: root/src/builder/mod.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/builder/mod.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/builder/mod.rs')
-rw-r--r--src/builder/mod.rs24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/builder/mod.rs b/src/builder/mod.rs
index c372e70..0773a6a 100644
--- a/src/builder/mod.rs
+++ b/src/builder/mod.rs
@@ -17,14 +17,16 @@ mod edit_role;
mod execute_webhook;
mod get_messages;
-pub use self::create_embed::{CreateEmbed, CreateEmbedAuthor, CreateEmbedFooter};
-pub use self::create_invite::CreateInvite;
-pub use self::create_message::CreateMessage;
-pub use self::edit_channel::EditChannel;
-pub use self::edit_guild::EditGuild;
-pub use self::edit_member::EditMember;
-pub use self::edit_message::EditMessage;
-pub use self::edit_profile::EditProfile;
-pub use self::edit_role::EditRole;
-pub use self::execute_webhook::ExecuteWebhook;
-pub use self::get_messages::GetMessages;
+pub use self::{
+ create_embed::{CreateEmbed, CreateEmbedAuthor, CreateEmbedFooter},
+ create_invite::CreateInvite,
+ create_message::CreateMessage,
+ edit_channel::EditChannel,
+ edit_guild::EditGuild,
+ edit_member::EditMember,
+ edit_message::EditMessage,
+ edit_profile::EditProfile,
+ edit_role::EditRole,
+ execute_webhook::ExecuteWebhook,
+ get_messages::GetMessages
+};