moto/moto/ec2/urls.py
2014-08-27 11:33:55 -04:00

12 lines
185 B
Python

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