mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-03 17:52:12 +01:00
Don't cfg(all(single_thing))
This commit is contained in:
parent
4eb80e0640
commit
6911e323fd
2 changed files with 2 additions and 2 deletions
|
@ -229,7 +229,7 @@ pub mod update_listeners {
|
||||||
///
|
///
|
||||||
/// [`teloxide::repls`]: crate::repls
|
/// [`teloxide::repls`]: crate::repls
|
||||||
#[deprecated = "This module was moved. Use `teloxide::repls` instead."]
|
#[deprecated = "This module was moved. Use `teloxide::repls` instead."]
|
||||||
#[cfg(all(feature = "ctrlc_handler"))]
|
#[cfg(feature = "ctrlc_handler")]
|
||||||
pub mod repls {
|
pub mod repls {
|
||||||
pub use crate::repls::*;
|
pub use crate::repls::*;
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,7 +69,7 @@ pub use repls::{commands_repl, commands_repl_with_listener};
|
||||||
pub mod dispatching;
|
pub mod dispatching;
|
||||||
pub mod error_handlers;
|
pub mod error_handlers;
|
||||||
pub mod prelude;
|
pub mod prelude;
|
||||||
#[cfg(all(feature = "ctrlc_handler"))]
|
#[cfg(feature = "ctrlc_handler")]
|
||||||
pub mod repls;
|
pub mod repls;
|
||||||
pub mod stop;
|
pub mod stop;
|
||||||
pub mod update_listeners;
|
pub mod update_listeners;
|
||||||
|
|
Loading…
Reference in a new issue