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