(c *cli.Context)
| 248 | } |
| 249 | |
| 250 | func actionGroupDissolve(c *cli.Context) error { |
| 251 | r, err := makeRequest("/signalGroupDissolve") |
| 252 | if err == nil { |
| 253 | fmt.Println("trigger guardian functions : \n", string(r)) |
| 254 | return nil |
| 255 | } |
| 256 | return err |
| 257 | } |
| 258 | |
| 259 | func actionBootstrap(c *cli.Context) error { |
| 260 | c.String("cid") |
nothing calls this directly
no test coverage detected