SpacesKeysService is an interface for interfacing with the Spaces Keys
| 37 | |
| 38 | // SpacesKeysService is an interface for interfacing with the Spaces Keys |
| 39 | type SpacesKeysService interface { |
| 40 | Create(*godo.SpacesKeyCreateRequest) (*SpacesKey, error) |
| 41 | Delete(string) error |
| 42 | Update(string, *godo.SpacesKeyUpdateRequest) (*SpacesKey, error) |
| 43 | List() ([]SpacesKey, error) |
| 44 | Get(string) (*SpacesKey, error) |
| 45 | } |
| 46 | |
| 47 | type spacesKeysService struct { |
| 48 | client *godo.Client |
no outgoing calls
no test coverage detected