executor.go 255 B

12345678910111213141516171819
  1. package db
  2. import (
  3. "time"
  4. alpm "github.com/Jguer/go-alpm"
  5. )
  6. type RepoPackage interface {
  7. Base() string
  8. BuildDate() time.Time
  9. DB() *alpm.DB
  10. Description() string
  11. ISize() int64
  12. Name() string
  13. ShouldIgnore() bool
  14. Size() int64
  15. Version() string
  16. }