moto/moto/sns/urls.py
2014-05-11 22:56:44 -04:00

9 lines
144 B
Python

from .responses import SNSResponse
url_bases = [
"https?://sns.(.+).amazonaws.com"
]
url_paths = {
'{0}/$': SNSResponse().dispatch,
}