mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 07:19:35 +00:00
6 lines
250 B
Python
6 lines
250 B
Python
# app/api/dependencies.py — compatibility alias for deps.py
|
|
from app.api.deps import get_current_user, get_current_tenant, require_role
|
|
from app.database import get_db
|
|
|
|
__all__ = ["get_db", "get_current_user", "get_current_tenant", "require_role"]
|