patchman/client/common/structs.go

22 lines
404 B
Go
Raw Normal View History

2023-10-22 16:11:13 +02:00
package common
type OSInfo struct {
OS string
Distribution string
DistributionLike []string
Version string
KernelRelease string
Architecture string
PackageManager string
}
type ListPackage struct {
Name string
Source string
Version string
Upgradeable bool
UpgradeableTo string
Architecture string
PackageManager string
}