diff --git a/routes/routes.py b/routes/routes.py index 2374c2d..52f7a2b 100644 --- a/routes/routes.py +++ b/routes/routes.py @@ -2,11 +2,20 @@ router = Blueprint("router", __name__) +#Tesla made this @router.route("/check") def check(): return "Congratulations! Your app works. :)" +@router.route("/hello") +def hello(): +return "Hactoberfest is cool!" + @router.route("/add", methods=["POST"]) def add(): + a=int(input("Enter the first number") + b=input("Enter the second number") + c=a+b + print(c) # Add logic here - return \ No newline at end of file + return