luet/pkg/installer/system.go
2020-04-04 14:29:08 +02:00

15 lines
227 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.Packages, error) {
return s.Database.World(), nil
}