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/utils | |
| 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/utils')
| -rw-r--r-- | src/utils/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/mod.rs b/src/utils/mod.rs index 7c6f428..dbd1455 100644 --- a/src/utils/mod.rs +++ b/src/utils/mod.rs @@ -9,7 +9,7 @@ use std::ffi::OsStr; use std::fs::File; use std::io::Read; use std::path::Path; -use ::prelude_internal::*; +use ::internal::prelude::*; mod colour; mod message_builder; |