10 lines
241 B
Python
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"
|