-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsure.gen.go
210 lines (203 loc) · 6.15 KB
/
sure.gen.go
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
package osexec
import "github.com/yyle88/sure"
type CommandConfig88Must struct{ c *CommandConfig }
func (c *CommandConfig) Must() *CommandConfig88Must {
return &CommandConfig88Must{c: c}
}
func (T *CommandConfig88Must) WithEnvs(envs []string) (res *CommandConfig) {
res = T.c.WithEnvs(envs)
return res
}
func (T *CommandConfig88Must) WithPath(path string) (res *CommandConfig) {
res = T.c.WithPath(path)
return res
}
func (T *CommandConfig88Must) WithShellType(shellType string) (res *CommandConfig) {
res = T.c.WithShellType(shellType)
return res
}
func (T *CommandConfig88Must) WithShellFlag(shellFlag string) (res *CommandConfig) {
res = T.c.WithShellFlag(shellFlag)
return res
}
func (T *CommandConfig88Must) WithShell(shellType string, shellFlag string) (res *CommandConfig) {
res = T.c.WithShell(shellType, shellFlag)
return res
}
func (T *CommandConfig88Must) WithBash() (res *CommandConfig) {
res = T.c.WithBash()
return res
}
func (T *CommandConfig88Must) WithZsh() (res *CommandConfig) {
res = T.c.WithZsh()
return res
}
func (T *CommandConfig88Must) WithSh() (res *CommandConfig) {
res = T.c.WithSh()
return res
}
func (T *CommandConfig88Must) WithDebugMode(debugMode bool) (res *CommandConfig) {
res = T.c.WithDebugMode(debugMode)
return res
}
func (T *CommandConfig88Must) WithDebug() (res *CommandConfig) {
res = T.c.WithDebug()
return res
}
func (T *CommandConfig88Must) WithMatchPipe(matchPipe func(line string) bool) (res *CommandConfig) {
res = T.c.WithMatchPipe(matchPipe)
return res
}
func (T *CommandConfig88Must) WithMatchMore(matchMore bool) (res *CommandConfig) {
res = T.c.WithMatchMore(matchMore)
return res
}
func (T *CommandConfig88Must) Exec(name string, args ...string) (res []byte) {
res, err1 := T.c.Exec(name, args...)
sure.Must(err1)
return res
}
func (T *CommandConfig88Must) StreamExec(name string, args ...string) (res []byte) {
res, err1 := T.c.StreamExec(name, args...)
sure.Must(err1)
return res
}
func (T *CommandConfig88Must) ExecInPipe(name string, args ...string) (res []byte) {
res, err1 := T.c.ExecInPipe(name, args...)
sure.Must(err1)
return res
}
type CommandConfig88Soft struct{ c *CommandConfig }
func (c *CommandConfig) Soft() *CommandConfig88Soft {
return &CommandConfig88Soft{c: c}
}
func (T *CommandConfig88Soft) WithEnvs(envs []string) (res *CommandConfig) {
res = T.c.WithEnvs(envs)
return res
}
func (T *CommandConfig88Soft) WithPath(path string) (res *CommandConfig) {
res = T.c.WithPath(path)
return res
}
func (T *CommandConfig88Soft) WithShellType(shellType string) (res *CommandConfig) {
res = T.c.WithShellType(shellType)
return res
}
func (T *CommandConfig88Soft) WithShellFlag(shellFlag string) (res *CommandConfig) {
res = T.c.WithShellFlag(shellFlag)
return res
}
func (T *CommandConfig88Soft) WithShell(shellType string, shellFlag string) (res *CommandConfig) {
res = T.c.WithShell(shellType, shellFlag)
return res
}
func (T *CommandConfig88Soft) WithBash() (res *CommandConfig) {
res = T.c.WithBash()
return res
}
func (T *CommandConfig88Soft) WithZsh() (res *CommandConfig) {
res = T.c.WithZsh()
return res
}
func (T *CommandConfig88Soft) WithSh() (res *CommandConfig) {
res = T.c.WithSh()
return res
}
func (T *CommandConfig88Soft) WithDebugMode(debugMode bool) (res *CommandConfig) {
res = T.c.WithDebugMode(debugMode)
return res
}
func (T *CommandConfig88Soft) WithDebug() (res *CommandConfig) {
res = T.c.WithDebug()
return res
}
func (T *CommandConfig88Soft) WithMatchPipe(matchPipe func(line string) bool) (res *CommandConfig) {
res = T.c.WithMatchPipe(matchPipe)
return res
}
func (T *CommandConfig88Soft) WithMatchMore(matchMore bool) (res *CommandConfig) {
res = T.c.WithMatchMore(matchMore)
return res
}
func (T *CommandConfig88Soft) Exec(name string, args ...string) (res []byte) {
res, err1 := T.c.Exec(name, args...)
sure.Soft(err1)
return res
}
func (T *CommandConfig88Soft) StreamExec(name string, args ...string) (res []byte) {
res, err1 := T.c.StreamExec(name, args...)
sure.Soft(err1)
return res
}
func (T *CommandConfig88Soft) ExecInPipe(name string, args ...string) (res []byte) {
res, err1 := T.c.ExecInPipe(name, args...)
sure.Soft(err1)
return res
}
type CommandConfig88Omit struct{ c *CommandConfig }
func (c *CommandConfig) Omit() *CommandConfig88Omit {
return &CommandConfig88Omit{c: c}
}
func (T *CommandConfig88Omit) WithEnvs(envs []string) (res *CommandConfig) {
res = T.c.WithEnvs(envs)
return res
}
func (T *CommandConfig88Omit) WithPath(path string) (res *CommandConfig) {
res = T.c.WithPath(path)
return res
}
func (T *CommandConfig88Omit) WithShellType(shellType string) (res *CommandConfig) {
res = T.c.WithShellType(shellType)
return res
}
func (T *CommandConfig88Omit) WithShellFlag(shellFlag string) (res *CommandConfig) {
res = T.c.WithShellFlag(shellFlag)
return res
}
func (T *CommandConfig88Omit) WithShell(shellType string, shellFlag string) (res *CommandConfig) {
res = T.c.WithShell(shellType, shellFlag)
return res
}
func (T *CommandConfig88Omit) WithBash() (res *CommandConfig) {
res = T.c.WithBash()
return res
}
func (T *CommandConfig88Omit) WithZsh() (res *CommandConfig) {
res = T.c.WithZsh()
return res
}
func (T *CommandConfig88Omit) WithSh() (res *CommandConfig) {
res = T.c.WithSh()
return res
}
func (T *CommandConfig88Omit) WithDebugMode(debugMode bool) (res *CommandConfig) {
res = T.c.WithDebugMode(debugMode)
return res
}
func (T *CommandConfig88Omit) WithDebug() (res *CommandConfig) {
res = T.c.WithDebug()
return res
}
func (T *CommandConfig88Omit) WithMatchPipe(matchPipe func(line string) bool) (res *CommandConfig) {
res = T.c.WithMatchPipe(matchPipe)
return res
}
func (T *CommandConfig88Omit) WithMatchMore(matchMore bool) (res *CommandConfig) {
res = T.c.WithMatchMore(matchMore)
return res
}
func (T *CommandConfig88Omit) Exec(name string, args ...string) (res []byte) {
res, err1 := T.c.Exec(name, args...)
sure.Omit(err1)
return res
}
func (T *CommandConfig88Omit) StreamExec(name string, args ...string) (res []byte) {
res, err1 := T.c.StreamExec(name, args...)
sure.Omit(err1)
return res
}
func (T *CommandConfig88Omit) ExecInPipe(name string, args ...string) (res []byte) {
res, err1 := T.c.ExecInPipe(name, args...)
sure.Omit(err1)
return res
}