moto/moto/textract/urls.py
2022-02-21 11:43:36 -03:30

11 lines
196 B
Python

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