()
| 209 | } |
| 210 | |
| 211 | func (c *cliConnection) HasSpace() (bool, error) { |
| 212 | var result bool |
| 213 | |
| 214 | err := c.withClientDo(func(client *rpc.Client) error { |
| 215 | return client.Call("CliRpcCmd.HasSpace", "", &result) |
| 216 | }) |
| 217 | |
| 218 | return result, err |
| 219 | } |
| 220 | |
| 221 | func (c *cliConnection) ApiEndpoint() (string, error) { |
| 222 | var result string |
nothing calls this directly
no test coverage detected