From 74d6e2ea5cd92d88b249e4fe998d2ab69cb9304b Mon Sep 17 00:00:00 2001 From: Stefan Haun Date: Tue, 1 Dec 2020 20:56:21 +0100 Subject: [PATCH] Integrate Validate Handler with make_app --- app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app.py b/app.py index f9300df..96a27ef 100644 --- a/app.py +++ b/app.py @@ -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), ])