WithRun determines the main command is executed.
()
| 164 | |
| 165 | // WithRun determines the main command is executed. |
| 166 | func WithRun() Option { |
| 167 | return func(o *Options) { |
| 168 | o.run = true |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | // WithList determines the list command is executed. |
| 173 | func WithList() Option { |
no outgoing calls