commit | 2ad98bda93875c53ea5fb1498be911293dae5e8c | [log] [tgz] |
---|---|---|
author | Jamie Hannaford <jamie.hannaford@rackspace.com> | Wed Oct 29 13:26:47 2014 +0100 |
committer | Jamie Hannaford <jamie.hannaford@rackspace.com> | Thu Oct 30 13:20:11 2014 +0100 |
tree | 8f2af977763164a99e1e9aca74e40552e4836002 | |
parent | 9c7bb8ebd9eb59519c1d285f47bd572af6d7faf3 [diff] [blame] |
Adding get user operation
diff --git a/openstack/identity/v2/users/results.go b/openstack/identity/v2/users/results.go index fe62ada..7261b96 100644 --- a/openstack/identity/v2/users/results.go +++ b/openstack/identity/v2/users/results.go
@@ -72,6 +72,12 @@ return &response.User, err } +// CreateResult represents the result of a Create operation type CreateResult struct { commonResult } + +// GetResult represents the result of a Get operation +type GetResult struct { + commonResult +}