moto/moto/ec2/urls.py

11 lines
145 B
Python
Raw Normal View History

2013-02-21 03:21:55 +00:00
from .responses import EC2Response
2013-02-18 21:09:40 +00:00
2013-03-05 13:14:43 +00:00
url_bases = [
"https?://ec2.(.+).amazonaws.com",
2013-03-05 13:14:43 +00:00
]
url_paths = {
'{0}/': EC2Response().dispatch,
2013-02-18 21:09:40 +00:00
}