moto/moto/ec2/urls.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
140 B
Python
Raw Normal View History

2013-02-20 22:21:55 -05:00
from .responses import EC2Response
2013-02-18 16:09:40 -05:00
2013-03-05 08:14:43 -05:00
2020-04-19 19:12:40 -07:00
url_bases = [r"https?://ec2\.(.+)\.amazonaws\.com(|\.cn)"]
2013-03-05 08:14:43 -05:00
2015-03-16 13:13:40 +01:00
url_paths = {"{0}/": EC2Response.dispatch}