some upgrades

This commit is contained in:
Simon
2026-02-13 15:47:35 +00:00
parent b45687d578
commit eea8d9ae6f
6 changed files with 750 additions and 4 deletions

View File

@@ -3,6 +3,7 @@ pub mod flaresolverr;
pub mod cache;
pub mod requester;
pub mod discord;
pub mod proxy;
pub fn parse_abbreviated_number(s: &str) -> Option<u32> {
let s = s.trim();
@@ -42,4 +43,4 @@ pub fn interleave<T: Clone>(lists: &[Vec<T>]) -> Vec<T> {
}
result
}
}