Files
fund-tracer/backend/app/core/security.py
2026-03-11 16:28:04 +08:00

10 lines
241 B
Python

"""Placeholder for authentication & authorization.
In the competition demo we skip real auth. This module reserves the
extension point so RBAC / JWT can be plugged in later.
"""
async def get_current_user() -> str:
return "demo_user"