commit | 0262e973440f1b4954c30f76d43119804865c9d1 | [log] [tgz] |
---|---|---|
author | Samuel A. Falvo II <sam.falvo@rackspace.com> | Fri Jan 24 16:06:56 2014 -0800 |
committer | Samuel A. Falvo II <sam.falvo@rackspace.com> | Fri Jan 24 16:06:56 2014 -0800 |
tree | a0cb2b92a1b856d4f2cf0d4314f145c73a4f2207 | |
parent | 8a549ef401853b19af27ddb9206efd060a1bce83 [diff] [blame] |
First monitoring API endpoint implemented
diff --git a/rackspace/monitoring/common.go b/rackspace/monitoring/common.go new file mode 100644 index 0000000..d68a349 --- /dev/null +++ b/rackspace/monitoring/common.go
@@ -0,0 +1,11 @@ +package monitoring + +import ( + "github.com/rackspace/gophercloud/openstack/identity" +) + +type Options struct { + Endpoint string + AuthOptions identity.AuthOptions + Authentication identity.AuthResults +}