rename old torrent module

This commit is contained in:
royalcat 2025-01-08 00:51:28 +03:00
parent c496c0269a
commit 10c3f126f0
42 changed files with 1910 additions and 694 deletions

View file

@ -1,18 +0,0 @@
type TorrentDaemonMutation {
validateTorrent(filter: TorrentFilter!): Boolean! @resolver
setTorrentPriority(
infohash: String!
file: String
priority: TorrentPriority!
): Boolean! @resolver
cleanup(files: Boolean, dryRun: Boolean!): CleanupResponse! @resolver
}
type CleanupResponse {
count: Int!
list: [String!]!
}
type DownloadTorrentResponse {
task: Task
}