SAE-A2-TruthInquiry/truthseeker/__init__.py
2022-11-17 17:26:15 +01:00

12 lines
208 B
Python

import flask
from truthseeker import routes_api
app = flask.Flask("truthseeker")
app.register_blueprint(routes_api.api_routes, url_prefix="/api/v1")
@app.route("/")
def hello():
return "Hello World!"