moto/moto/textract/urls.py

12 lines
197 B
Python
Raw Normal View History

2022-02-17 15:30:48 -03:30
"""textract base URL and path."""
2022-02-17 15:30:48 -03:30
from .responses import TextractResponse
url_bases = [
r"https?://textract\.(.+)\.amazonaws\.com",
]
url_paths = {
"{0}/$": TextractResponse.dispatch,
}