()
| 149 | } |
| 150 | |
| 151 | func (c *cliConnection) Username() (string, error) { |
| 152 | var result string |
| 153 | |
| 154 | err := c.withClientDo(func(client *rpc.Client) error { |
| 155 | return client.Call("CliRpcCmd.Username", "", &result) |
| 156 | }) |
| 157 | |
| 158 | return result, err |
| 159 | } |
| 160 | |
| 161 | func (c *cliConnection) UserGuid() (string, error) { |
| 162 | var result string |
nothing calls this directly
no test coverage detected