()
| 159 | } |
| 160 | |
| 161 | func (c *cliConnection) UserGuid() (string, error) { |
| 162 | var result string |
| 163 | |
| 164 | err := c.withClientDo(func(client *rpc.Client) error { |
| 165 | return client.Call("CliRpcCmd.UserGuid", "", &result) |
| 166 | }) |
| 167 | |
| 168 | return result, err |
| 169 | } |
| 170 | |
| 171 | func (c *cliConnection) UserEmail() (string, error) { |
| 172 | var result string |
nothing calls this directly
no test coverage detected