moto/moto/autoscaling/urls.py

11 lines
207 B
Python
Raw Normal View History

from __future__ import unicode_literals
2013-07-27 20:24:38 +00:00
from .responses import AutoScalingResponse
url_bases = [
"https?://autoscaling.(.+).amazonaws.com",
]
url_paths = {
2015-03-16 12:13:40 +00:00
'{0}/$': AutoScalingResponse.dispatch,
2013-07-27 20:24:38 +00:00
}