Files
KCAPDemoServer/src/app/blueprints/api/routes.py

8 lines
186 B
Python
Raw Normal View History

2025-06-19 14:25:42 -04:00
from flask import jsonify
from . import api_bp
2025-05-14 15:30:27 -04:00
@api_bp.route('/')
2025-06-19 14:25:42 -04:00
def api_index(tenant_id):
"""API home endpoint"""
2025-06-19 14:25:42 -04:00
return jsonify({'message': 'API Home', 'tenant': tenant_id})