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