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