()
| 169 | } |
| 170 | |
| 171 | func (c *cliConnection) UserEmail() (string, error) { |
| 172 | var result string |
| 173 | |
| 174 | err := c.withClientDo(func(client *rpc.Client) error { |
| 175 | return client.Call("CliRpcCmd.UserEmail", "", &result) |
| 176 | }) |
| 177 | |
| 178 | return result, err |
| 179 | } |
| 180 | |
| 181 | func (c *cliConnection) IsSSLDisabled() (bool, error) { |
| 182 | var result bool |
nothing calls this directly
no test coverage detected