Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Manifest ¶
type Manifest struct {
Name string `yaml:"name,omitempty"`
Description string `yaml:"description,omitempty"`
State ManifestState `yaml:"state"`
URL string `yaml:"url"` // TODO: checksum
Files []*File `yaml:"files"`
}
type ManifestState ¶
type ManifestState string
const ( UnknownManifestState ManifestState = "unknown" InstalledManifestState ManifestState = "installed" PendingManifestState ManifestState = "pending" BrokenInstallManifestState ManifestState = "broken_install" BrokenManifestState ManifestState = "broken" PendingDeleteManifestState ManifestState = "pending_delete" BrokenDeleteManifestState ManifestState = "broken_delete" )
Click to show internal directories.
Click to hide internal directories.