REMOVE LDAP

This commit is contained in:
beabigegg
2025-09-25 08:44:44 +08:00
commit 333a640a3b
53 changed files with 4231 additions and 0 deletions

9
routes/api.py Normal file
View 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'})