()
| 17 | } |
| 18 | |
| 19 | func NewQuery() cli.CommandFactory { |
| 20 | return func() (cli.Command, error) { |
| 21 | return &Query{ |
| 22 | KiteClient: DefaultKiteClient, |
| 23 | Ui: DefaultUi, |
| 24 | }, nil |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | func (c *Query) Synopsis() string { |
| 29 | return "Queries kontrol based on the given criteria" |
nothing calls this directly
no outgoing calls
no test coverage detected