mirror of
https://github.com/Jguer/yay.git
synced 2025-08-14 10:37:09 +02:00
14 lines
197 B
Go
14 lines
197 B
Go
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
|
|
}
|