REMOVE LDAP
This commit is contained in:
9
routes/api.py
Normal file
9
routes/api.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from flask import Blueprint, jsonify
|
||||
|
||||
api_bp = Blueprint('api', __name__, url_prefix='/api')
|
||||
|
||||
|
||||
@api_bp.route('/health', methods=['GET'])
|
||||
def health_check():
|
||||
"""簡易 API 健康檢查端點。"""
|
||||
return jsonify({'status': 'ok'})
|
Reference in New Issue
Block a user