()
| 199 | } |
| 200 | |
| 201 | func (c *cliConnection) HasOrganization() (bool, error) { |
| 202 | var result bool |
| 203 | |
| 204 | err := c.withClientDo(func(client *rpc.Client) error { |
| 205 | return client.Call("CliRpcCmd.HasOrganization", "", &result) |
| 206 | }) |
| 207 | |
| 208 | return result, err |
| 209 | } |
| 210 | |
| 211 | func (c *cliConnection) HasSpace() (bool, error) { |
| 212 | var result bool |
nothing calls this directly
no test coverage detected