create, list, delete for cluster, task and service

This commit is contained in:
jbencook 2015-12-17 17:13:00 +00:00
commit 3737b39e15
7 changed files with 666 additions and 0 deletions

10
moto/ecs/urls.py Normal file
View file

@ -0,0 +1,10 @@
from __future__ import unicode_literals
from .responses import EC2ContainerServiceResponse
url_bases = [
"https?://ecs.(.+).amazonaws.com",
]
url_paths = {
'{0}/$': EC2ContainerServiceResponse.dispatch,
}