Move files around a bit

This commit is contained in:
Igor Katson 2024-04-30 09:39:38 +01:00
parent f2ae2f67f4
commit cd33f99352
3 changed files with 5 additions and 2 deletions

View file

@ -35,7 +35,6 @@ mod file_ops;
pub mod http_api;
pub mod http_api_client;
mod merge_streams;
mod opened_file;
mod peer_connection;
mod peer_info_reader;
mod read_buf;

View file

@ -1,3 +1,5 @@
mod opened_file;
use std::{
fs::OpenOptions,
io::{Read, Seek, SeekFrom, Write},
@ -6,7 +8,9 @@ use std::{
use anyhow::Context;
use crate::{opened_file::OpenedFile, torrent_state::ManagedTorrentInfo};
use crate::torrent_state::ManagedTorrentInfo;
use self::opened_file::OpenedFile;
use super::{StorageFactory, TorrentStorage};