moto/moto/sts/urls.py
2014-08-27 11:33:55 -04:00

11 lines
183 B
Python

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