aboutsummaryrefslogtreecommitdiff
path: root/src/framework/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/framework/mod.rs')
-rw-r--r--src/framework/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/framework/mod.rs b/src/framework/mod.rs
index c5ddb04..9f72dc6 100644
--- a/src/framework/mod.rs
+++ b/src/framework/mod.rs
@@ -61,11 +61,11 @@ pub mod standard;
pub use self::standard::StandardFramework;
use client::Context;
-use model::Message;
+use model::channel::Message;
use threadpool::ThreadPool;
#[cfg(feature = "standard_framework")]
-use model::UserId;
+use model::id::UserId;
/// This trait allows for serenity to either use its builtin framework, or yours.
pub trait Framework {