10 lines
223 B
Python
10 lines
223 B
Python
from __future__ import unicode_literals
|
|
from .responses import DatabaseMigrationServiceResponse
|
|
|
|
url_bases = [r"https?://dms\.(.+)\.amazonaws\.com"]
|
|
|
|
|
|
url_paths = {
|
|
"{0}/$": DatabaseMigrationServiceResponse.dispatch,
|
|
}
|