moto/moto/sagemaker/urls.py
jweite ba99c61477
Basic Support for Endpoints, EndpointConfigs and TrainingJobs (#3142)
* Basic upport for Endpoints, EndpointConfigs and TrainingJobs

* Dropped extraneous pass statement.

Co-authored-by: Joseph Weitekamp <jweite@amazon.com>
2020-07-19 15:06:48 +01:00

10 lines
205 B
Python

from __future__ import unicode_literals
from .responses import SageMakerResponse
url_bases = [
"https?://api.sagemaker.(.+).amazonaws.com",
]
url_paths = {
"{0}/$": SageMakerResponse.dispatch,
}