(c *cli.Context)
| 324 | } |
| 325 | |
| 326 | func actionEnableGuardian(c *cli.Context) error { |
| 327 | _, err := makeRequest("/enableGuardian") |
| 328 | if err == nil { |
| 329 | return nil |
| 330 | } |
| 331 | return err |
| 332 | } |
| 333 | |
| 334 | func actionShowVersion(c *cli.Context) error { |
| 335 | fmt.Println("Version: ", Version) |
nothing calls this directly
no test coverage detected