Documentation
¶
Overview ¶
Package metadata provides functionality to store metadata about debian packages installed in a docker image layer.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PackageMetadata ¶
type PackageMetadata struct {
// Name is the name of the software package.
Name string `yaml:"name"`
// Version is the version string of the software package.
Version string `yaml:"version"`
}
PackageMetadata is the YAML entry for a single software package.
type PackagesMetadata ¶
type PackagesMetadata struct {
// Packages is the list of software package entries read from the input
// CSV file.
Packages []PackageMetadata `yaml:"packages"`
}
PackagesMetadata is the collection of software package metadata read from the input CSV file to be serialized into a YAML file.
Click to show internal directories.
Click to hide internal directories.