10 lines
151 B
Python
10 lines
151 B
Python
from .responses import WAFV2Response
|
|
|
|
url_bases = [
|
|
r"https?://wafv2\.(.+)\.amazonaws.com",
|
|
]
|
|
|
|
url_paths = {
|
|
"{0}/": WAFV2Response.dispatch,
|
|
}
|