Begin work on mocking CloudWatch Events.

This commit is contained in:
Justin Wiley 2016-11-29 17:19:26 -08:00
commit d0a66f2dff
4 changed files with 133 additions and 0 deletions

11
moto/events/urls.py Normal file
View file

@ -0,0 +1,11 @@
from __future__ import unicode_literals
from .responses import EventsHandler
url_bases = [
"https?://events.(.+).amazonaws.com"
]
url_paths = {
"{0}/": EventsHandler.dispatch,
}