mirror of
https://github.com/zoriya/tide.git
synced 2026-05-24 15:18:32 +00:00
16 lines
204 B
Go
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
|
|
}
|