From de96888d40bd3a04498f93561cc7ec5d11444b71 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), ])