mirror of
https://github.com/Jguer/yay.git
synced 2024-11-07 09:37:22 +01:00
21 lines
280 B
Go
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
|
|
}
|