diff options
| author | Zeyla Hellyer <[email protected]> | 2017-06-02 08:26:24 -0700 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2017-06-02 08:26:24 -0700 |
| commit | 7a96b8a1356e50b2bff5d5e03d43361a052517c6 (patch) | |
| tree | d0df182f288e959bd73f4c610c7af4f0dfacf5a8 /src/model/channel/attachment.rs | |
| parent | Add User::refresh (diff) | |
| download | serenity-7a96b8a1356e50b2bff5d5e03d43361a052517c6.tar.xz serenity-7a96b8a1356e50b2bff5d5e03d43361a052517c6.zip | |
Fix compilations across feature combinations
Diffstat (limited to 'src/model/channel/attachment.rs')
| -rw-r--r-- | src/model/channel/attachment.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/model/channel/attachment.rs b/src/model/channel/attachment.rs index b7f371b..54b84ea 100644 --- a/src/model/channel/attachment.rs +++ b/src/model/channel/attachment.rs @@ -1,6 +1,8 @@ #[cfg(feature="model")] use hyper::Client as HyperClient; +#[cfg(feature="model")] use std::io::Read; +#[cfg(feature="model")] use ::internal::prelude::*; /// A file uploaded with a message. Not to be confused with [`Embed`]s. |