Basic ELB support

This commit is contained in:
Steve Pulec 2013-07-22 22:50:58 -04:00
commit b40d3a5629
7 changed files with 392 additions and 0 deletions

9
moto/elb/urls.py Normal file
View file

@ -0,0 +1,9 @@
from .responses import ELBResponse
url_bases = [
"https?://elasticloadbalancing.(.+).amazonaws.com",
]
url_paths = {
'{0}/$': ELBResponse().dispatch,
}