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