From 46096e8cde0e49360fd739079f3054eb0ab17796 Mon Sep 17 00:00:00 2001 From: Gnome! Date: Fri, 22 Nov 2024 20:57:54 +0000 Subject: [PATCH] Add Token to serenity::all (#3054) This allows it to imported via `poise::serenity_prelude` which is often `use`'d as `serenity`. --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index c31d83ce019..40897739a28 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -140,6 +140,8 @@ pub mod all { #[cfg(feature = "interactions_endpoint")] #[doc(no_inline)] pub use crate::interactions_endpoint::*; + #[doc(no_inline)] + pub use crate::secrets::*; #[cfg(feature = "utils")] #[doc(no_inline)] pub use crate::utils::*;