moto/moto/sts/urls.py
2017-02-23 19:43:48 -05:00

10 lines
185 B
Python

from __future__ import unicode_literals
from .responses import TokenResponse
url_bases = [
"https?://sts(.*).amazonaws.com"
]
url_paths = {
'{0}/$': TokenResponse.dispatch,
}