d712a98ce1
Fixes #3570
7 lines
178 B
Python
7 lines
178 B
Python
from __future__ import unicode_literals
|
|
from .responses import TokenResponse
|
|
|
|
url_bases = ["https?://sts(.*).amazonaws.com(|.cn)"]
|
|
|
|
url_paths = {"{0}/$": TokenResponse.dispatch}
|