mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-03 17:52:12 +01:00
Move UpState to utils
This commit is contained in:
parent
2685123316
commit
a5707fd713
4 changed files with 5 additions and 2 deletions
|
@ -29,7 +29,6 @@ mod logging;
|
||||||
pub mod prelude;
|
pub mod prelude;
|
||||||
pub mod requests;
|
pub mod requests;
|
||||||
pub mod types;
|
pub mod types;
|
||||||
mod up_state;
|
|
||||||
pub mod utils;
|
pub mod utils;
|
||||||
|
|
||||||
extern crate teloxide_macros;
|
extern crate teloxide_macros;
|
||||||
|
|
|
@ -15,7 +15,7 @@ pub use crate::{
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(feature = "frunk")]
|
#[cfg(feature = "frunk")]
|
||||||
pub use crate::up_state::UpState;
|
pub use crate::utils::UpState;
|
||||||
|
|
||||||
pub use tokio::sync::mpsc::UnboundedReceiver;
|
pub use tokio::sync::mpsc::UnboundedReceiver;
|
||||||
|
|
||||||
|
|
|
@ -4,5 +4,9 @@ mod client_from_env;
|
||||||
pub mod command;
|
pub mod command;
|
||||||
pub mod html;
|
pub mod html;
|
||||||
pub mod markdown;
|
pub mod markdown;
|
||||||
|
mod up_state;
|
||||||
|
|
||||||
pub use client_from_env::client_from_env;
|
pub use client_from_env::client_from_env;
|
||||||
|
|
||||||
|
#[cfg(feature = "frunk")]
|
||||||
|
pub use up_state::UpState;
|
||||||
|
|
Loading…
Reference in a new issue