moto/moto/ce/urls.py
2022-06-28 13:40:49 +00:00

12 lines
193 B
Python

"""ce base URL and path."""
from .responses import CostExplorerResponse
url_bases = [
r"https?://ce\.(.+)\.amazonaws\.com",
]
url_paths = {
"{0}/$": CostExplorerResponse.dispatch,
}