Files
polaris/pkg/doc.go
2024-07-10 17:35:16 +08:00

15 lines
160 B
Go

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