11 lines
183 B
Python
11 lines
183 B
Python
from __future__ import unicode_literals
|
|
from .responses import ECRResponse
|
|
|
|
url_bases = [
|
|
"https?://ecr.(.+).amazonaws.com",
|
|
]
|
|
|
|
url_paths = {
|
|
'{0}/$': ECRResponse.dispatch,
|
|
}
|