moto/moto/xray/urls.py

11 lines
188 B
Python
Raw Normal View History

2017-09-22 22:36:26 +00:00
from __future__ import unicode_literals
from .responses import XRayResponse
url_bases = [
"https?://xray.(.+).amazonaws.com",
]
url_paths = {
'{0}/.+$': XRayResponse.dispatch,
}