This repository has been archived by the owner on Jun 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
st.cue
104 lines (83 loc) · 1.73 KB
/
st.cue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package structural
import (
"github.com/hofstadter-io/hofmod-cli/gen"
"github.com/hofstadter-io/hofmod-cli/schema"
)
HofGenCli: gen.#HofGenerator & {
Outdir: "./"
Cli: #CLI
}
Outdir: "./"
#Module: "github.com/hofstadter-io/structural"
#_CmdImports: [
{Path: #Module, ...},
]
#CLI: schema.#Cli & {
Name: "st"
Package: "github.com/hofstadter-io/structural/cmd/st"
Usage: "st"
Short: "st is structural in a cli"
Long: Short
Releases: schema.#GoReleaser & {
Disabled: false
Draft: false
Author: "Tony Worm"
Homepage: "https://github.com/hofstadter-io/structural"
GitHub: {
Owner: "hofstadter-io"
Repo: "st"
}
Docker: {
Maintainer: "Hofstadter, Inc <[email protected]>"
Repo: "hofstadter"
}
}
Telemetry: "UA-103579574-5"
TelemetryIdDir: ".hof"
OmitRun: true
Commands: [
schema.#Command & {
Name: "diff"
Usage: "diff"
Short: "diff two Cue values to create a diffset"
Long: Short
},
schema.#Command & {
Name: "patch"
Usage: "patch"
Short: "patch a Cue value with a diffset"
Long: Short
},
schema.#Command & {
Name: "merge"
Usage: "merge"
Short: "merge two Cue values"
Long: Short
},
schema.#Command & {
Name: "mask"
Usage: "mask"
Short: "extract Cue values with a 'mask'"
Long: Short
},
schema.#Command & {
Name: "pick"
Usage: "pick"
Short: "extract Cue values with a 'mask'"
Long: Short
},
schema.#Command & {
Name: "query"
Usage: "query"
Short: "query from Cue values with masks and attributes"
Long: Short
},
schema.#Command & {
Name: "hack"
Usage: "hack"
Short: "dev command"
Long: Short
Hidden: true
},
]
}