12 lines
189 B
Python
12 lines
189 B
Python
from __future__ import unicode_literals
|
|
|
|
from .responses import WAFV2Response
|
|
|
|
url_bases = [
|
|
"https?://wafv2.(.+).amazonaws.com",
|
|
]
|
|
|
|
url_paths = {
|
|
"{0}/": WAFV2Response.dispatch,
|
|
}
|