moto/moto/ec2/urls.py

7 lines
140 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
2020-04-20 02:12:40 +00:00
url_bases = [r"https?://ec2\.(.+)\.amazonaws\.com(|\.cn)"]
2013-03-05 13:14:43 +00:00
2019-10-31 15:44:26 +00:00
url_paths = {"{0}/": EC2Response.dispatch}