diff options
| author | Joe K <[email protected]> | 2017-06-28 04:34:06 -0400 |
|---|---|---|
| committer | alex <[email protected]> | 2017-06-28 10:34:06 +0200 |
| commit | 3db42c96c98fdd6d332347767cb1c276858da98b (patch) | |
| tree | 681e6ba3f9cc04df330cd4cc07ee3a9074001a7d /src/framework/mod.rs | |
| parent | Update docs links (diff) | |
| download | serenity-3db42c96c98fdd6d332347767cb1c276858da98b.tar.xz serenity-3db42c96c98fdd6d332347767cb1c276858da98b.zip | |
Make CommandOrAlias and CommandGroup.commands public (#117)
Diffstat (limited to 'src/framework/mod.rs')
| -rw-r--r-- | src/framework/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework/mod.rs b/src/framework/mod.rs index 671771f..9a84b7f 100644 --- a/src/framework/mod.rs +++ b/src/framework/mod.rs @@ -64,7 +64,7 @@ mod buckets; pub(crate) use self::buckets::{Bucket, Ratelimit}; pub use self::command::{Command, CommandType, CommandGroup}; -pub(crate) use self::command::CommandOrAlias; +pub use self::command::CommandOrAlias; pub use self::configuration::Configuration; pub use self::create_command::CreateCommand; pub use self::create_group::CreateGroup; |