api: setup basic Flask application

This commit is contained in:
June 2026-04-30 18:56:17 +02:00
commit 415c9870e7
Signed by: june
SSH key fingerprint: SHA256:o9EAq4Y9N9K0pBQeBTqhSDrND5E7oB+60ZNx0U1yPe0
5 changed files with 128 additions and 7 deletions

7
api/app.py Normal file
View file

@ -0,0 +1,7 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_world():
return "<p>Hello, World!</p>"