Files
2023-09-17 16:27:40 +02:00

16 lines
204 B
Go

package models
type ItemType string
const (
Torrent ItemType = "torrent"
Magnet ItemType = "magnet"
Direct ItemType = "direct"
)
type NewItem struct {
Uri string
Type *ItemType
Path *string
}