urls.go 225 B

123456789101112
  1. package accounts
  2. import "devel.mephi.ru/iacherepanov/openstack-gophercloud"
  3. func getURL(c *gophercloud.ServiceClient) string {
  4. return c.Endpoint
  5. }
  6. func updateURL(c *gophercloud.ServiceClient) string {
  7. return getURL(c)
  8. }