1
0
mirror of https://github.com/Jguer/yay.git synced 2025-08-14 10:37:09 +02:00
yay/pkg/db/executor.go
2020-08-16 23:41:55 +02:00

20 lines
255 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
}