Skip to content

Commit 0411a9a

Browse files
committed
refactor: [torrust#1495] rename TorrentRepository to Swarms
1 parent 78d4b83 commit 0411a9a

File tree

4 files changed

+71
-71
lines changed

4 files changed

+71
-71
lines changed

packages/torrent-repository/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
pub mod repository;
1+
pub mod swarms;
22
pub mod swarm;
33

44
use std::sync::{Arc, Mutex, MutexGuard};
55

66
use torrust_tracker_clock::clock;
77

8-
pub type TorrentRepository = repository::TorrentRepository;
8+
pub type Swarms = swarms::Swarms;
99
pub type SwarmHandle = Arc<Mutex<Swarm>>;
1010
pub type Swarm = swarm::Swarm;
1111

0 commit comments

Comments
 (0)