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