blob: 15f834640147451d4ca6ba1036769d333413b35a [file] [log] [blame]
Jon Perritt85ed5232015-01-16 09:14:51 -07001package base
2
Jon Perritt27249f42016-02-18 10:35:59 -06003import "github.com/gophercloud/gophercloud"
Jon Perritt85ed5232015-01-16 09:14:51 -07004
5// Get retrieves the home document, allowing the user to discover the
6// entire API.
7func Get(c *gophercloud.ServiceClient) GetResult {
Jon Perrittdb0ae142016-03-13 00:33:41 -06008 var r GetResult
9 _, r.Err = c.Get(getURL(c), &r.Body, nil)
10 return r
Jon Perritt85ed5232015-01-16 09:14:51 -070011}
12
13// Ping retrieves a ping to the server.
14func Ping(c *gophercloud.ServiceClient) PingResult {
Jon Perrittdb0ae142016-03-13 00:33:41 -060015 var r PingResult
16 _, r.Err = c.Get(pingURL(c), nil, &gophercloud.RequestOpts{
Jon Perritt85ed5232015-01-16 09:14:51 -070017 OkCodes: []int{204},
Ash Wilsonf98df8d2015-02-12 15:46:40 -050018 MoreHeaders: map[string]string{"Accept": ""},
Jon Perritt85ed5232015-01-16 09:14:51 -070019 })
Jon Perrittdb0ae142016-03-13 00:33:41 -060020 return r
Jon Perritt85ed5232015-01-16 09:14:51 -070021}