mirror of https://github.com/docker/compose.git
10 lines
194 B
Go
10 lines
194 B
Go
|
// +build !ecs
|
||
|
|
||
|
package mobycli
|
||
|
|
||
|
import "github.com/docker/api/context/store"
|
||
|
|
||
|
func init() {
|
||
|
delegatedContextTypes = append(delegatedContextTypes, store.AwsContextType, store.EcsContextType)
|
||
|
}
|