yay/pkg/db/executor.go
2020-08-16 23:41:55 +02:00

21 lines
280 B
Go

package db
import (
"time"
alpm "github.com/Jguer/go-alpm"
)
type RepoPackage interface {
Base() string
BuildDate() time.Time
DB() *alpm.DB
Description() string
ISize() int64
Name() string
ShouldIgnore() bool
Size() int64
Version() string
Reason() alpm.PkgReason
}