1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-03-17 14:03:32 +00:00

Thanks IDEA I am sure removing random imports on commit is not a terrible decision

This commit is contained in:
Steffo 2025-02-06 09:07:46 +01:00
parent 002a986687
commit 2b972db59e
Signed by: steffo
GPG key ID: 6B8E18743E7E1F86
2 changed files with 3 additions and 0 deletions
src/services/telegram/commands

View file

@ -1,5 +1,6 @@
use anyhow::Context;
use rand::seq::IndexedRandom;
use rand::SeedableRng;
use teloxide::payloads::SendMessageSetters;
use teloxide::prelude::{Message, Requester};
use teloxide::types::ReplyParameters;

View file

@ -1,4 +1,6 @@
use anyhow::Context;
use rand::Rng;
use rand::SeedableRng;
use regex::Regex;
use teloxide::payloads::SendMessageSetters;
use teloxide::prelude::{Message, Requester};