Skip to content

Commit

Permalink
ensure min change at lib.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
xlfish233 committed Oct 31, 2024
1 parent d2c3b95 commit fa3f662
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub use self::error::Error;
pub use self::objects::*;
pub use self::parse_mode::ParseMode;
pub use self::response::*;
#[cfg(feature = "async-http-client")]
#[cfg(feature = "async-telegram-trait")]
pub use self::trait_async::AsyncTelegramApi;
#[cfg(feature = "telegram-trait")]
pub use self::trait_sync::TelegramApi;
Expand All @@ -26,13 +26,13 @@ mod client_reqwest;
#[cfg(feature = "http-client")]
mod client_ureq;
mod error;
#[cfg(any(test, feature = "http-client", feature = "async-http-client",))]
#[cfg(any(test, feature = "http-client", feature = "async-http-client"))]
mod json;
mod macros;
pub mod objects;
mod parse_mode;
pub mod response;
#[cfg(feature = "async-http-client")]
#[cfg(feature = "async-telegram-trait")]
mod trait_async;
#[cfg(feature = "telegram-trait")]
mod trait_sync;
Expand Down

0 comments on commit fa3f662

Please sign in to comment.