Files
polaris/pkg/doc.go
2024-08-01 19:52:40 +08:00

17 lines
197 B
Go

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