moto/moto/elasticbeanstalk/urls.py
2021-10-18 19:44:29 +00:00

10 lines
180 B
Python

from .responses import EBResponse
url_bases = [
r"https?://elasticbeanstalk\.(?P<region>[a-zA-Z0-9\-_]+)\.amazonaws.com",
]
url_paths = {
"{0}/$": EBResponse.dispatch,
}