moto/moto/glue/urls.py

8 lines
172 B
Python
Raw Normal View History

from __future__ import unicode_literals
from .responses import GlueResponse
2019-10-31 15:44:26 +00:00
url_bases = ["https?://glue(.*).amazonaws.com"]
2019-10-31 15:44:26 +00:00
url_paths = {"{0}/$": GlueResponse.dispatch}