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