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
|
2020-08-01 00:01:01 +02:00
|
|
|
ISize() int64
|
|
|
|
Size() int64
|
|
|
|
Description() string
|
2020-07-29 01:53:25 +02:00
|
|
|
}
|