executor.go 197 B

12345678910111213
  1. package db
  2. import alpm "github.com/Jguer/go-alpm"
  3. type RepoPackage interface {
  4. Base() string
  5. Name() string
  6. Version() string
  7. DB() *alpm.DB
  8. ISize() int64
  9. Size() int64
  10. Description() string
  11. }