11 lines
184 B
Python
11 lines
184 B
Python
from __future__ import unicode_literals
|
|
from .responses import SNSResponse
|
|
|
|
url_bases = [
|
|
"https?://sns.(.+).amazonaws.com"
|
|
]
|
|
|
|
url_paths = {
|
|
'{0}/$': SNSResponse().dispatch,
|
|
}
|