(c *cli.Context)
| 257 | } |
| 258 | |
| 259 | func actionBootstrap(c *cli.Context) error { |
| 260 | c.String("cid") |
| 261 | r, err := makeRequest("/signalBootstrap?cid=" + c.String("cid")) |
| 262 | if err == nil { |
| 263 | fmt.Println("trigger guardian functions : \n", string(r)) |
| 264 | return nil |
| 265 | } |
| 266 | return err |
| 267 | } |
| 268 | |
| 269 | func actionRnadom(c *cli.Context) error { |
| 270 | r, err := makeRequest("/signalRandom") |
nothing calls this directly
no test coverage detected