diff options
| author | Austin Hellyer <[email protected]> | 2016-11-13 08:22:24 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-11-13 08:22:24 -0800 |
| commit | f633d1c9603079f584f4f715b308b33c0750ad3a (patch) | |
| tree | f77bc0b630731676be880b11c24b90cffef8c537 /src/client/context.rs | |
| parent | Don't overflow on message length check (diff) | |
| download | serenity-f633d1c9603079f584f4f715b308b33c0750ad3a.tar.xz serenity-f633d1c9603079f584f4f715b308b33c0750ad3a.zip | |
Move the builders to the utils
The builders aren't a large enough portion of the library to deserve
their own root-level module, so move them to the `utils` module.
Additionally, split them into separate files, as the library will be
receiving more builders and the single-file pattern was getting rather
large.
Diffstat (limited to 'src/client/context.rs')
| -rw-r--r-- | src/client/context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/context.rs b/src/client/context.rs index 9e584b3..6fa1ad3 100644 --- a/src/client/context.rs +++ b/src/client/context.rs @@ -5,7 +5,7 @@ use std::sync::{Arc, Mutex}; use super::connection::Connection; use super::{STATE, http}; use super::login_type::LoginType; -use ::builder::{ +use ::utils::builder::{ CreateInvite, EditChannel, EditGuild, |