Integrate Validate Handler with make_app

This commit is contained in:
Stefan Haun 2020-12-01 20:56:21 +01:00
parent 114c632797
commit 74d6e2ea5c

1
app.py
View file

@ -88,6 +88,7 @@ def make_app():
return tornado.web.Application([
(version_path + r"/health", HealthHandler),
(version_path + r"/oas3", Oas3Handler),
(version_path + r"/validate", ValidateHandler),
])