mirror of
https://github.com/docker/compose.git
synced 2026-06-28 12:13:24 +00:00
Signed-off-by: aiordache <anca.iordache@docker.com> Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
10 lines
149 B
Go
10 lines
149 B
Go
package amazon
|
|
|
|
//go:generate mockgen -destination=./mock/api.go -package=mock . API
|
|
|
|
type API interface {
|
|
downAPI
|
|
upAPI
|
|
convertAPI
|
|
secretsAPI
|
|
}
|