commit | c19adea8edcf7fb6bb683961e5b66c3894958822 | [log] [tgz] |
---|---|---|
author | Jon Perritt <jrperritt@gmail.com> | Tue Apr 15 16:56:01 2014 -0500 |
committer | Jon Perritt <jrperritt@gmail.com> | Tue Apr 15 16:56:01 2014 -0500 |
tree | 9a00098ecbc5db3f43f086f0c26de61774a3af0b | |
parent | b6b1d020b419d991cb506242f756a2567165fdd4 [diff] [blame] |
make object and container types generic
diff --git a/openstack/storage/v1/objects/objects.go b/openstack/storage/v1/objects/objects.go index 20228e5..33bad29 100644 --- a/openstack/storage/v1/objects/objects.go +++ b/openstack/storage/v1/objects/objects.go
@@ -6,13 +6,7 @@ "strings" ) -type Object struct { - Name string - Hash string - Bytes int - Content_type string - Last_modified string -} +type Object map[string]interface{} type ListOpts struct { Container string