(args string, retVal *plugin_models.Space)
| 212 | } |
| 213 | |
| 214 | func (cmd *CliRpcCmd) GetCurrentSpace(args string, retVal *plugin_models.Space) error { |
| 215 | retVal.Name = cmd.cliConfig.SpaceFields().Name |
| 216 | retVal.Guid = cmd.cliConfig.SpaceFields().GUID |
| 217 | |
| 218 | return nil |
| 219 | } |
| 220 | |
| 221 | func (cmd *CliRpcCmd) Username(args string, retVal *string) error { |
| 222 | *retVal = cmd.cliConfig.Username() |
nothing calls this directly
no test coverage detected