Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions routes/routes.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from flask import Blueprint

from flask import Blueprint,request,jsonify
inport json
router = Blueprint("router", __name__)

@router.route("/check")
Expand All @@ -9,4 +9,8 @@ def check():
@router.route("/add", methods=["POST"])
def add():
# Add logic here
return
return
#changed
@router.route("/hello")
def hello():
return "hactober is cool. :)"