diff options
| author | Austin Hellyer <[email protected]> | 2016-11-14 18:23:29 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-11-14 18:23:29 -0800 |
| commit | 80ec9fe2b19f05871d134c9b08d4fc607ec37af6 (patch) | |
| tree | a18af5274a1fce359004fbcd4f9fd2267904ba90 /src/model/mod.rs | |
| parent | EmbedAuthor 'url' is optional (diff) | |
| download | serenity-80ec9fe2b19f05871d134c9b08d4fc607ec37af6.tar.xz serenity-80ec9fe2b19f05871d134c9b08d4fc607ec37af6.zip | |
Add internal module
Create a general `internal` module, and move `prelude_internal` to
`internal::prelude`.
Diffstat (limited to 'src/model/mod.rs')
| -rw-r--r-- | src/model/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/mod.rs b/src/model/mod.rs index 81750a0..fc226f9 100644 --- a/src/model/mod.rs +++ b/src/model/mod.rs @@ -27,7 +27,7 @@ pub use self::webhook::*; use self::utils::*; use std::collections::HashMap; use std::fmt; -use ::prelude_internal::*; +use ::internal::prelude::*; use ::utils::decode_array; // All of the enums and structs are imported here. These are built from the |