Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Stage ¶
type Stage uint8
Stage represents the stability of a version
const ( // Stable should be used for plugins that are rarely changed in backwards-compatible ways, e.g. bug fixes. Stable Stage = iota // Beta should be used for plugins that may be changed in minor ways and are not expected to break between uses. Beta Stage = iota // Alpha should be used for plugins that are frequently changed and may break between uses. Alpha Stage = iota )
Order Stage in decreasing degree of stability for comparison purposes. Stable must be 0 so that it is the default Stage
func ParseStage ¶
ParseStage parses stage into a Stage, assuming it is one of the valid stages
Click to show internal directories.
Click to hide internal directories.