Merge in autoscaling

This commit is contained in:
Steve Pulec 2013-07-27 16:24:38 -04:00
commit d57157e749
12 changed files with 1165 additions and 0 deletions

9
moto/autoscaling/urls.py Normal file
View file

@ -0,0 +1,9 @@
from .responses import AutoScalingResponse
url_bases = [
"https?://autoscaling.(.+).amazonaws.com",
]
url_paths = {
'{0}/$': AutoScalingResponse().dispatch,
}