fix namespace

This commit is contained in:
yggverse 2025-08-03 16:08:16 +03:00
parent bd1a7b7f26
commit 9548698115

View file

@ -10,15 +10,15 @@ use librqbit::{
AddTorrent, AddTorrentOptions, AddTorrentResponse, ConnectionOptions, PeerConnectionOptions, AddTorrent, AddTorrentOptions, AddTorrentResponse, ConnectionOptions, PeerConnectionOptions,
SessionOptions, SessionOptions,
}; };
use libyggtracker_redb::{
Database,
torrent::{Image, Torrent},
};
use peers::Peers; use peers::Peers;
use preload::Preload; use preload::Preload;
use std::{collections::HashSet, num::NonZero, os::unix::ffi::OsStrExt, time::Duration}; use std::{collections::HashSet, num::NonZero, os::unix::ffi::OsStrExt, time::Duration};
use trackers::Trackers; use trackers::Trackers;
use url::Url; use url::Url;
use yggtracker_redb::{
Database,
torrent::{Image, Torrent},
};
#[tokio::main] #[tokio::main]
async fn main() -> Result<()> { async fn main() -> Result<()> {