mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 00:43:20 +01:00
9 lines
360 B
Go
9 lines
360 B
Go
package model
|
|
|
|
// Distro provides information about a detected Linux Distro.
|
|
type Distro struct {
|
|
Name string `json:"name"` // Name of the Linux distribution
|
|
Version string `json:"version"` // Version of the Linux distribution (major or major.minor version)
|
|
IDLike string `json:"idLike"` // the ID_LIKE field found within the /etc/os-release file
|
|
}
|