Enabled clippy warnings and fixed them

This commit is contained in:
2023-11-16 21:51:46 +03:00
parent f0116b3207
commit 6ae745fcd4
21 changed files with 129 additions and 163 deletions

View File

@@ -1,15 +1,14 @@
pub(crate) use crate::{
pub use crate::{
commands::Command,
errors::*,
first_handler, handler,
markups::*,
models::*,
state::State,
state::{Handler, MainDialogue, MessageIds, PackagedHandler},
state::{Handler, MainDialogue, MessageIds, PackagedHandler, State},
utils::*,
};
pub(crate) use cryptography::prelude::*;
pub(crate) use entity::prelude::*;
pub(crate) use futures::{StreamExt, TryStreamExt};
pub(crate) use sea_orm::prelude::*;
pub(crate) use teloxide::{adaptors::Throttle, prelude::*};
pub use cryptography::prelude::*;
pub use entity::prelude::*;
pub use futures::{StreamExt, TryStreamExt};
pub use sea_orm::prelude::*;
pub use teloxide::{adaptors::Throttle, prelude::*};