Jon Perritt | 6073e62 | 2015-01-19 11:20:44 -0700 | [diff] [blame] | 1 | package serviceassets |
2 | |||||
3 | import ( | ||||
4 | "github.com/rackspace/gophercloud" | ||||
5 | |||||
6 | os "github.com/rackspace/gophercloud/openstack/cdn/v1/serviceassets" | ||||
7 | ) | ||||
8 | |||||
9 | // Delete accepts a unique ID and deletes the CDN service asset associated with | ||||
10 | // it. | ||||
11 | func Delete(c *gophercloud.ServiceClient, id string, opts os.DeleteOptsBuilder) os.DeleteResult { | ||||
12 | return os.Delete(c, id, opts) | ||||
13 | } |