1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! Some useful utilities.

pub mod command;
pub mod html;
pub mod markdown;
mod up_state;

pub use teloxide_core::net::client_from_env;

#[cfg(feature = "frunk")]
#[cfg_attr(all(docsrs, feature = "nightly"), doc(cfg(feature = "frunk")))]
pub use up_state::UpState;