diff options
Diffstat (limited to 'src/model/webhook.rs')
| -rw-r--r-- | src/model/webhook.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/model/webhook.rs b/src/model/webhook.rs index 8b9d0f2..0d6b7c9 100644 --- a/src/model/webhook.rs +++ b/src/model/webhook.rs @@ -1,6 +1,5 @@ //! Webhook model and implementations. -use super::channel::Message; use super::id::{ChannelId, GuildId, WebhookId}; use super::user::User; @@ -11,6 +10,8 @@ use internal::prelude::*; #[cfg(feature = "model")] use std::mem; #[cfg(feature = "model")] +use super::channel::Message; +#[cfg(feature = "model")] use {http, utils}; /// A representation of a webhook, which is a low-effort way to post messages to |