(c *cli.Context)
| 230 | } |
| 231 | |
| 232 | func actionShowStatus(c *cli.Context) error { |
| 233 | r, err := makeRequest("/") |
| 234 | if err == nil { |
| 235 | fmt.Println(string(r)) |
| 236 | return nil |
| 237 | } |
| 238 | return err |
| 239 | } |
| 240 | |
| 241 | func actionGroupFormation(c *cli.Context) error { |
| 242 | r, err := makeRequest("/signalGroupFormation") |
nothing calls this directly
no test coverage detected