From eb8b474522a1b7eece5d9bae8658fec224fff434 Mon Sep 17 00:00:00 2001 From: Agrim Nautiyal <31009929+AgrimNautiyal@users.noreply.github.com> Date: Wed, 16 Oct 2019 15:31:12 +0530 Subject: [PATCH] Update routes.py --- routes/routes.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/routes/routes.py b/routes/routes.py index 2374c2d..5ad52c0 100644 --- a/routes/routes.py +++ b/routes/routes.py @@ -6,7 +6,11 @@ def check(): return "Congratulations! Your app works. :)" +@router.route("/hello") +def start(): + return "Hello world!" + @router.route("/add", methods=["POST"]) def add(): # Add logic here - return \ No newline at end of file + return