()
| 18 | } |
| 19 | |
| 20 | func NewRegister() cli.CommandFactory { |
| 21 | return func() (cli.Command, error) { |
| 22 | return &Register{ |
| 23 | KiteClient: DefaultKiteClient, |
| 24 | Ui: DefaultUi, |
| 25 | }, nil |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | func (c *Register) Synopsis() string { |
| 30 | return "Registers this host to a kite authority" |
nothing calls this directly
no outgoing calls
no test coverage detected