forked from torrust/torrust-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
18 lines (18 loc) · 636 Bytes
/
Copy pathlib.rs
File metadata and controls
18 lines (18 loc) · 636 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Torrust Tracker REST API Runtime Adapter
//!
//! `torrust-tracker-rest-api-runtime-adapter` provides tracker-specific
//! implementations of the application layer port traits.
//!
//! This package owns:
//!
//! - Adapter implementations for `TorrentQueryPort` and other ports.
//! - Conversion from domain types to protocol DTOs.
//! - Wiring tracker internals to the application layer.
//!
//! This package does NOT own:
//!
//! - Protocol DTOs (those belong to `rest-api-protocol`).
//! - Use-case services (those belong to `rest-api-application`).
//! - Axum server routing or middleware.
pub mod adapters;
pub mod conversion;