From 95486981158b07bd440bb7be39d9c7eb28dc5495 Mon Sep 17 00:00:00 2001 From: yggverse Date: Sun, 3 Aug 2025 16:08:16 +0300 Subject: [PATCH] fix namespace --- src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 334755d..cfbf3a7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,15 +10,15 @@ use librqbit::{ AddTorrent, AddTorrentOptions, AddTorrentResponse, ConnectionOptions, PeerConnectionOptions, SessionOptions, }; +use libyggtracker_redb::{ + Database, + torrent::{Image, Torrent}, +}; use peers::Peers; use preload::Preload; use std::{collections::HashSet, num::NonZero, os::unix::ffi::OsStrExt, time::Duration}; use trackers::Trackers; use url::Url; -use yggtracker_redb::{ - Database, - torrent::{Image, Torrent}, -}; #[tokio::main] async fn main() -> Result<()> {