aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/moto/py3/moto/rekognition/urls.py
blob: ce23694721dc9f35cd60da7d360de2f1cbf813de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
"""rekognition base URL and path."""
from .responses import RekognitionResponse

url_bases = [
    r"https?://rekognition\.(.+)\.amazonaws\.com",
]

url_paths = {
    "{0}/$": RekognitionResponse.dispatch,
}