moto/moto/config/urls.py

7 lines
178 B
Python
Raw Normal View History

2019-02-25 16:27:25 -08:00
from __future__ import unicode_literals
from .responses import ConfigResponse
2019-10-31 08:44:26 -07:00
url_bases = ["https?://config.(.+).amazonaws.com"]
2019-02-25 16:27:25 -08:00
2019-10-31 08:44:26 -07:00
url_paths = {"{0}/$": ConfigResponse.dispatch}