Begin work on mocking CloudWatch Events.
This commit is contained in:
parent
c3c6eaf281
commit
d0a66f2dff
4 changed files with 133 additions and 0 deletions
11
moto/events/urls.py
Normal file
11
moto/events/urls.py
Normal 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,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue