moto/moto/sts/urls.py

11 lines
181 B
Python
Raw Normal View History

from __future__ import unicode_literals
2013-05-24 17:22:34 -04:00
from .responses import TokenResponse
url_bases = [
"https?://sts.amazonaws.com"
]
url_paths = {
2015-03-16 13:13:40 +01:00
'{0}/$': TokenResponse.dispatch,
2013-05-24 17:22:34 -04:00
}