14 lines
170 B
Python
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"
|