moto/moto/wafv2/urls.py
2021-08-04 06:45:41 +01:00

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,
}