mirror of
https://github.com/mudler/luet.git
synced 2025-06-27 07:50:18 +00:00
15 lines
227 B
Go
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
|
|
}
|