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