moto/moto/ses/urls.py

11 lines
188 B
Python
Raw Normal View History

from __future__ import unicode_literals
2013-02-25 04:30:51 +00:00
from .responses import EmailResponse
2013-03-05 13:14:43 +00:00
url_bases = [
"https?://email.(.+).amazonaws.com"
2013-03-05 13:14:43 +00:00
]
2013-02-25 04:30:51 +00:00
2013-03-05 13:14:43 +00:00
url_paths = {
2015-03-16 12:13:40 +00:00
'{0}/$': EmailResponse.dispatch,
2013-02-25 04:30:51 +00:00
}