mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
12 lines
213 B
Go
12 lines
213 B
Go
package amazon
|
|
|
|
//go:generate mockgen -destination=./api_mock.go -self_package "github.com/docker/ecs-plugin/pkg/amazon" -package=amazon . API
|
|
|
|
type API interface {
|
|
downAPI
|
|
upAPI
|
|
logsAPI
|
|
secretsAPI
|
|
listAPI
|
|
}
|