13 lines
383 B
Rust
13 lines
383 B
Rust
// 负责导出不依赖存储搜索和传输实现的核心领域模型
|
|
|
|
mod fingerprint;
|
|
mod torrent;
|
|
|
|
pub use fingerprint::content_key;
|
|
#[cfg(test)]
|
|
pub(crate) use torrent::test_record;
|
|
pub use torrent::{
|
|
Availability, AvailabilityStatus, Heat, HeatLevel, IndexState, InfoHash, RECORD_SCHEMA_VERSION,
|
|
TorrentFile, TorrentRecord, TorrentRecordError, VerificationResult,
|
|
};
|