This commit is contained in:
2025-05-18 19:57:50 +00:00
parent a64ede76d6
commit 3b2559c473
2 changed files with 33 additions and 0 deletions

10
app/main.py Normal file
View File

@@ -0,0 +1,10 @@
from flask import Flask
from app import main
app = Flask(__name__)
@app.route("/<classes>/<name>")
def classes(classes, name):
return main(classes, name)
@app.route("/healthz")
def health():
return "OK - Good"