diff options
| author | acdenisSK <[email protected]> | 2017-08-10 09:06:28 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-08-10 09:06:56 +0200 |
| commit | eee857a855831851599e5196750b27b26151eb16 (patch) | |
| tree | 12c87e91559b682b4f5a27d26fa423e325bc2b28 /src/lib.rs | |
| parent | Remove the `I` bound for the language param and fix `push_mono_safe` (diff) | |
| download | serenity-eee857a855831851599e5196750b27b26151eb16.tar.xz serenity-eee857a855831851599e5196750b27b26151eb16.zip | |
Split event handling in the cache to a trait
note: This trait might become like `framework::Framework` in the future.
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -163,6 +163,8 @@ pub use client::Client; #[cfg(feature = "cache")] use cache::Cache; #[cfg(feature = "cache")] +pub(crate) use cache::CacheEventsImpl; +#[cfg(feature = "cache")] use std::sync::RwLock; use model::{Message, UserId}; |