aboutsummaryrefslogtreecommitdiff
path: root/src/framework
diff options
context:
space:
mode:
authoracdenisSK <[email protected]>2017-07-27 08:19:13 +0200
committeracdenisSK <[email protected]>2017-07-27 08:19:13 +0200
commitfe1174603032515786f9cdcf70bd7fa798cbe01c (patch)
tree44c5d7325b793dd6f2050e03bdc05921a7414b46 /src/framework
parentFix the `_other` match arm (diff)
downloadserenity-fe1174603032515786f9cdcf70bd7fa798cbe01c.tar.xz
serenity-fe1174603032515786f9cdcf70bd7fa798cbe01c.zip
Fix imports
Diffstat (limited to 'src/framework')
-rw-r--r--src/framework/create_group.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/framework/create_group.rs b/src/framework/create_group.rs
index 5c36e4d..74d8a82 100644
--- a/src/framework/create_group.rs
+++ b/src/framework/create_group.rs
@@ -1,6 +1,6 @@
-pub use ext::framework::command::{Command, CommandGroup, CommandType};
-pub(crate) use ext::framework::command::CommandOrAlias;
-pub use ext::framework::create_command::CreateCommand;
+pub use super::command::{Command, CommandGroup, CommandType};
+pub(crate) use super::command::CommandOrAlias;
+pub use super::create_command::CreateCommand;
use std::default::Default;
use std::sync::Arc;