Jon Perritt | ab22e25 | 2015-01-16 09:15:20 -0700 | [diff] [blame^] | 1 | package base |
2 | |||||
3 | import ( | ||||
4 | "github.com/rackspace/gophercloud" | ||||
5 | |||||
6 | os "github.com/rackspace/gophercloud/openstack/cdn/v1/base" | ||||
7 | ) | ||||
8 | |||||
9 | // Get retrieves the home document, allowing the user to discover the | ||||
10 | // entire API. | ||||
11 | func Get(c *gophercloud.ServiceClient) os.GetResult { | ||||
12 | return os.Get(c) | ||||
13 | } | ||||
14 | |||||
15 | // Ping retrieves a ping to the server. | ||||
16 | func Ping(c *gophercloud.ServiceClient) os.PingResult { | ||||
17 | return os.Ping(c) | ||||
18 | } |