()
| 30 | } |
| 31 | |
| 32 | func (c *Tell) Help() string { |
| 33 | helpText := ` |
| 34 | Usage: kitectl tell [options] |
| 35 | |
| 36 | Calls a method on a kite. |
| 37 | |
| 38 | Options: |
| 39 | |
| 40 | -to=URL URL of the remote kite |
| 41 | -method=divide Method name to be invoked |
| 42 | -timeout=4 Timeout in seconds. |
| 43 | ` |
| 44 | return strings.TrimSpace(helpText) |
| 45 | } |
| 46 | |
| 47 | func (c *Tell) Run(args []string) int { |
| 48 |