Files
polaris/pkg/doc.go
2024-07-12 15:54:46 +08:00

16 lines
190 B
Go

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