Files
polaris/pkg/doc.go
Simon Ding a172ca0361 misc update
2024-07-11 12:19:35 +08:00

16 lines
175 B
Go

package pkg
type Torrent interface {
Name() string
Progress() int
Stop() error
Start() error
Remove() error
Save() string
Exists() bool
}
type Storage interface {
}