Files
fund-tracer/backend/app/core/security.py

10 lines
241 B
Python
Raw Normal View History

2026-03-11 16:28:04 +08:00
"""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"