10 lines
143 B
Python
10 lines
143 B
Python
from .responses import SWFResponse
|
|
|
|
url_bases = [
|
|
"https?://swf.(.+).amazonaws.com",
|
|
]
|
|
|
|
url_paths = {
|
|
'{0}/$': SWFResponse.dispatch,
|
|
}
|