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