moto/moto/rds/urls.py

11 lines
185 B
Python
Raw Normal View History

2015-01-09 03:18:06 +00:00
from __future__ import unicode_literals
from .responses import RDSResponse
url_bases = [
"https?://rds(\..+)?.amazonaws.com",
2015-01-09 03:18:06 +00:00
]
url_paths = {
2015-03-16 12:13:40 +00:00
'{0}/$': RDSResponse.dispatch,
2015-01-09 03:18:06 +00:00
}