moto/moto/support/urls.py
Connor 4d0ee82f98
support - intial commit to kick off trusted advisor checks (#3685)
* support - intial commit to kick off trusted advisor checks

* edit - expanded testing to include checking for expected check ids and
check names.

Added server testing

added support resource json to manifest file and simplified
support response return from reviewed comments

* Streamline loading of resource files

* edit - ensured regions are assigned in models

Co-authored-by: Bert Blommers <info@bertblommers.nl>
2021-02-14 12:22:16 +00:00

12 lines
196 B
Python

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