forked from TrueCloudLab/lego
6004e599ed
* feat: add dep configuration files. * chore: add vendor folder. * refactor: update Dockerfile. * review: remove git from Dockerfile. * review: remove RUN apk. * review: dep status. * feat: added .dockerignore
25 lines
472 B
Go
25 lines
472 B
Go
package egoscale
|
|
|
|
func (*ListAccounts) name() string {
|
|
return "listAccounts"
|
|
}
|
|
|
|
func (*ListAccounts) response() interface{} {
|
|
return new(ListAccountsResponse)
|
|
}
|
|
|
|
func (*EnableAccount) name() string {
|
|
return "enableAccount"
|
|
}
|
|
|
|
func (*EnableAccount) response() interface{} {
|
|
return new(EnableAccountResponse)
|
|
}
|
|
|
|
func (*DisableAccount) name() string {
|
|
return "disableAccount"
|
|
}
|
|
|
|
func (*DisableAccount) asyncResponse() interface{} {
|
|
return new(DisableAccountResponse)
|
|
}
|