Code cleanup

This commit is contained in:
2024-05-11 17:25:15 +03:00
parent 913d90f077
commit aa3c2ae313
20 changed files with 45 additions and 43 deletions

View File

@@ -1,14 +1,11 @@
pub(crate) use crate::cryptography::{
self, account::Decrypted as DecryptedAccount, validate_field,
};
pub(crate) use crate::entity::{self, account::Account, master_pass::MasterPass, Pool};
pub(crate) use crate::{
pub use crate::{
cryptography::{account::Decrypted as DecryptedAccount, validate_field},
entity::{account::Account, master_pass::MasterPass, Pool},
errors::{handle_error, NoUserInfo},
first_handler, handler,
locales::LocaleRef,
markups::*,
models::*,
markups::{deletion_markup, menu_markup},
state::{Handler, MainDialogue, MessageIds, PackagedHandler, State},
};
pub(crate) use futures::{StreamExt, TryStreamExt};
pub(crate) use teloxide::{adaptors::Throttle, prelude::*};
pub use futures::{StreamExt as _, TryStreamExt as _};
pub use teloxide::{adaptors::Throttle, prelude::*};