SAE-A2-TruthInquiry/truthseeker/routes/routes_ui.py
Thomas Rubini 5c162dd4fb
refactor
2022-11-29 13:54:38 +01:00

11 lines
163 B
Python

import flask
from truthseeker.logic import game_logic
routes_ui = flask.Blueprint("ui", __name__)
@routes_ui.route("/")
def hello():
return "Hello World!"