Remove unexported item from interface

Removing unexported `doAction` from DropletActionsService interface because it makes DropletActionsService impossible to mock.
This commit is contained in:
bryanl 2015-06-02 07:26:53 -04:00
parent 09b3c10a45
commit df64c561b0
1 changed files with 0 additions and 1 deletions

View File

@ -29,7 +29,6 @@ type DropletActionsService interface {
EnableIPv6(int) (*Action, *Response, error)
EnablePrivateNetworking(int) (*Action, *Response, error)
Upgrade(int) (*Action, *Response, error)
doAction(int, *ActionRequest) (*Action, *Response, error)
Get(int, int) (*Action, *Response, error)
GetByURI(string) (*Action, *Response, error)
}