Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ayrat555 committed Nov 26, 2023
1 parent 550b4a4 commit 868d366
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/bot/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ use crate::db::feeds;
use crate::db::telegram;
use crate::db::telegram::NewTelegramChat;
use crate::db::telegram::NewTelegramSubscription;
use crate::models::telegram_chat::TelegramChat;
use crate::models::Feed;
use crate::models::TelegramChat;
use crate::models::TelegramSubscription;
use diesel::r2d2::ConnectionManager;
use diesel::r2d2::PooledConnection;
Expand Down
8 changes: 4 additions & 4 deletions src/deliver/deliver_chat_updates_job.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ use crate::bot::telegram_client::Api;
use crate::bot::SimpleMessageParams;
use crate::db::feeds;
use crate::db::telegram;
use crate::models::feed::Feed;
use crate::models::feed_item::FeedItem;
use crate::models::telegram_chat::TelegramChat;
use crate::models::telegram_subscription::TelegramSubscription;
use crate::models::Feed;
use crate::models::FeedItem;
use crate::models::TelegramChat;
use crate::models::TelegramSubscription;
use aho_corasick::AhoCorasickBuilder;
use chrono::{DateTime, Utc};
use diesel::result::Error;
Expand Down

0 comments on commit 868d366

Please sign in to comment.