Files
immich-photo-flow/apps/trip-cluster/app/routes/nav.py
T

14 lines
170 B
Python

from flask import Blueprint
bp = Blueprint("nav", __name__)
@bp.route("/health")
def health():
return "ok"
@bp.route("/")
def index():
return "trip-cluster"