14 lines
584 B
Rust
14 lines
584 B
Rust
pub mod torrent {
|
|
include!("generated/torrent/torrent.rs");
|
|
}
|
|
|
|
pub use torrent::notification as notification_detail;
|
|
pub use torrent::{
|
|
AddRequest, AddResponse, AddedInfo, FileState, FilesRequest, FilesResponse, ListRequest,
|
|
ListResponse, Notification, NotificationKind, NotificationsRequest, PauseRequest,
|
|
PauseResponse, ProgressMark, RemoveRequest, RemoveResponse, RemovedInfo, ResumeRequest,
|
|
ResumeResponse, State, StateChanged, StatusRequest, TorrentFile, TorrentStatus,
|
|
torrents_client::TorrentsClient,
|
|
torrents_server::{Torrents, TorrentsServer},
|
|
};
|