aboutsummaryrefslogtreecommitdiff
path: root/src/model/guild.rs
diff options
context:
space:
mode:
authorAustin Hellyer <[email protected]>2016-11-13 08:22:24 -0800
committerAustin Hellyer <[email protected]>2016-11-13 08:22:24 -0800
commitf633d1c9603079f584f4f715b308b33c0750ad3a (patch)
treef77bc0b630731676be880b11c24b90cffef8c537 /src/model/guild.rs
parentDon't overflow on message length check (diff)
downloadserenity-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/model/guild.rs')
-rw-r--r--src/model/guild.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/guild.rs b/src/model/guild.rs
index 460f5ca..d784f30 100644
--- a/src/model/guild.rs
+++ b/src/model/guild.rs
@@ -14,7 +14,7 @@ use super::utils::{
warn_field
};
use super::*;
-use ::builder::{EditGuild, EditMember, EditRole};
+use ::utils::builder::{EditGuild, EditMember, EditRole};
use ::client::{STATE, http};
use ::prelude_internal::*;
use ::utils::{Colour, decode_array};