moto/moto/events/urls.py

8 lines
176 B
Python
Raw Normal View History

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