moto/moto/ce/urls.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
193 B
Python
Raw Normal View History

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