package
Version:
v0.9.2
Opens a new window with list of versions in this module.
Published: Jun 23, 2021
License: Apache-2.0
Opens a new window with license information.
Imports: 5
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Build struct {
Include []string `toml:"include"`
Exclude []string `toml:"exclude"`
Buildpacks []Buildpack `toml:"buildpacks"`
Env []EnvVar `toml:"env"`
Builder string `toml:"builder"`
}
type Buildpack struct {
ID string `toml:"id"`
Version string `toml:"version"`
URI string `toml:"uri"`
}
type Descriptor struct {
Project Project `toml:"project"`
Build Build `toml:"build"`
Metadata map[string]interface{} `toml:"metadata"`
}
type EnvVar struct {
Name string `toml:"name"`
Value string `toml:"value"`
}
type Project struct {
Name string `toml:"name"`
Licenses []dist.License `toml:"licenses"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.