diff options
| author | alex <[email protected]> | 2017-06-14 18:26:01 +0200 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2017-06-14 09:26:01 -0700 |
| commit | 32e07e4ac822d5cc1118f0db0fc92b549c1aaf81 (patch) | |
| tree | a4db15956faac92d544135de6885d64854a8b31d /src/framework/create_group.rs | |
| parent | Use HTTPS Connector with remaining HTTP functions (diff) | |
| download | serenity-32e07e4ac822d5cc1118f0db0fc92b549c1aaf81.tar.xz serenity-32e07e4ac822d5cc1118f0db0fc92b549c1aaf81.zip | |
Switch from #[doc(hidden)] to pub(crate)
Switch from using `#[doc(hidden)]` to hide some internal functions to
`pub(crate)`.
The library now requires rustc 1.18.
Diffstat (limited to 'src/framework/create_group.rs')
| -rw-r--r-- | src/framework/create_group.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/framework/create_group.rs b/src/framework/create_group.rs index cc0b3bd..88aa6ba 100644 --- a/src/framework/create_group.rs +++ b/src/framework/create_group.rs @@ -1,4 +1,5 @@ -pub use ext::framework::command::{Command, CommandType, CommandGroup, CommandOrAlias}; +pub use ext::framework::command::{Command, CommandType, CommandGroup}; +pub(crate) use ext::framework::command::CommandOrAlias; pub use ext::framework::create_command::CreateCommand; use std::default::Default; |