Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Schema ¶ added in v0.0.2
type Schema struct {
SchemaVersion [3]int `json:"schema_version"`
Commands []SchemaCommand `json:"commands"`
}
type SchemaCommand ¶ added in v0.0.2
type SchemaCommand struct {
Alpha bool `json:"alpha"`
Use string `json:"use"`
Short string `json:"short"`
Run SchemaCommandRun `json:"run"`
Flags []SchemaCommandFlag `json:"flags"`
Commands []SchemaCommand `json:"commands"`
}
type SchemaCommandField ¶ added in v0.0.2
type SchemaCommandFieldParser ¶ added in v0.0.2
type SchemaCommandFlag ¶ added in v0.0.2
type SchemaCommandList ¶ added in v0.0.2
type SchemaCommandList struct {
Name string `json:"name"`
Key string `json:"key"`
Type string `json:"type"`
Fields []SchemaCommandField `json:"fields"`
}
type SchemaCommandRun ¶ added in v0.0.2
type SchemaCommandRun struct {
Cmd string `json:"cmd"`
Path string `json:"path"`
Fields []SchemaCommandField `json:"fields"`
Lists []SchemaCommandList `json:"lists"`
}
Click to show internal directories.
Click to hide internal directories.