luet/pkg/installer/system.go
2019-11-29 19:01:52 +01:00

15 lines
228 B
Go

package installer
import (
pkg "github.com/mudler/luet/pkg/package"
)
type System struct {
Database pkg.PackageDatabase
Target string
}
func (s *System) World() ([]pkg.Package, error) {
return s.Database.World(), nil
}