Implemented core endpoints of ELBv2

This commit is contained in:
Jack Danger 2017-07-20 15:00:30 -07:00
commit 04e623ea14
9 changed files with 1546 additions and 0 deletions

10
moto/elbv2/urls.py Normal file
View file

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