yay/pkg/db/executor.go

14 lines
197 B
Go
Raw Normal View History

2020-07-29 01:53:25 +02:00
package db
import alpm "github.com/Jguer/go-alpm"
type RepoPackage interface {
Base() string
Name() string
Version() string
DB() *alpm.DB
ISize() int64
Size() int64
Description() string
2020-07-29 01:53:25 +02:00
}