filebrowser/users/torrent.go
chalkim 1d1cc4b7f8 feature: add global.torrent settings card
feature: remember make torrent options
2024-06-21 02:28:47 +08:00

13 lines
342 B
Go

package users
type CreateTorrentBody struct {
Announces []string `json:"announces"`
Comment string `json:"comment"`
Date bool `json:"date"`
Name string `json:"name"`
PieceLen int `json:"pieceLen"`
Private bool `json:"private"`
Source string `json:"source"`
WebSeeds []string `json:"webSeeds"`
}