moto/moto/ec2/urls.py
2020-04-19 19:12:48 -07:00

8 lines
180 B
Python

from __future__ import unicode_literals
from .responses import EC2Response
url_bases = [r"https?://ec2\.(.+)\.amazonaws\.com(|\.cn)"]
url_paths = {"{0}/": EC2Response.dispatch}