Implemented core endpoints of ELBv2
This commit is contained in:
parent
2b76d07558
commit
04e623ea14
9 changed files with 1546 additions and 0 deletions
10
moto/elbv2/urls.py
Normal file
10
moto/elbv2/urls.py
Normal 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,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue