11 lines
216 B
Python
11 lines
216 B
Python
"""identitystore base URL and path."""
|
|
from .responses import IdentityStoreResponse
|
|
|
|
url_bases = [
|
|
r"https?://identitystore\.(.+)\.amazonaws\.com",
|
|
]
|
|
|
|
url_paths = {
|
|
"{0}/$": IdentityStoreResponse.dispatch,
|
|
}
|