api.go 213 B

1234567891011
  1. package amazon
  2. //go:generate mockgen -destination=./api_mock.go -self_package "github.com/docker/ecs-plugin/pkg/amazon" -package=amazon . API
  3. type API interface {
  4. downAPI
  5. upAPI
  6. logsAPI
  7. secretsAPI
  8. listAPI
  9. }