From fdaeff4e36ae4bb188dfd00ae7df0f2e1e6b4a98 Mon Sep 17 00:00:00 2001 From: AdriDevelopsThings Date: Thu, 4 Jan 2024 17:07:05 +0100 Subject: [PATCH] fix: make telexide::utils::result::TelegramError public (#35) it would be very useful to have this enum public --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index c0c64a6..6f8bbad 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -77,7 +77,7 @@ pub mod macros { } pub use client::Client; -pub use utils::result::{Error, Result}; +pub use utils::result::{Error, TelegramError, Result}; pub mod prelude { //! A default set of exports which can be helpful to use.