SAE-A2-TruthInquiry/truthseeker/api.py
2022-11-17 16:12:30 +01:00

7 lines
133 B
Python

import flask
api_routes = flask.Blueprint("api", __name__)
@api_routes.route("/newGame")
def hello():
return "Created new game"