endpoints covers so far: - create_organization - describe_organization - create_account - describe_account - list_accounts all tests passing. could use some advise from maintaners.
11 lines
213 B
Python
11 lines
213 B
Python
from __future__ import unicode_literals
|
|
from .responses import OrganizationsResponse
|
|
|
|
url_bases = [
|
|
"https?://organizations.(.+).amazonaws.com",
|
|
]
|
|
|
|
url_paths = {
|
|
'{0}/$': OrganizationsResponse.dispatch,
|
|
}
|