aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authoracdenisSK <[email protected]>2017-08-10 09:06:28 +0200
committeracdenisSK <[email protected]>2017-08-10 09:06:56 +0200
commiteee857a855831851599e5196750b27b26151eb16 (patch)
tree12c87e91559b682b4f5a27d26fa423e325bc2b28 /src/lib.rs
parentRemove the `I` bound for the language param and fix `push_mono_safe` (diff)
downloadserenity-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.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 176834c..28e58e8 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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};