2023-10-10 09:39:55 +02:00
|
|
|
"""ivs base URL and path."""
|
|
|
|
|
from .responses import IVSResponse
|
|
|
|
|
|
|
|
|
|
url_bases = [
|
|
|
|
|
r"https?://ivs\.(.+)\.amazonaws\.com",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
url_paths = {
|
2023-10-18 18:29:20 +00:00
|
|
|
"{0}/CreateChannel": IVSResponse.dispatch,
|
|
|
|
|
"{0}/ListChannels": IVSResponse.dispatch,
|
|
|
|
|
"{0}/GetChannel": IVSResponse.dispatch,
|
|
|
|
|
"{0}/BatchGetChannel": IVSResponse.dispatch,
|
|
|
|
|
"{0}/UpdateChannel": IVSResponse.dispatch,
|
|
|
|
|
"{0}/DeleteChannel": IVSResponse.dispatch,
|
2023-10-10 09:39:55 +02:00
|
|
|
}
|