16 lines
269 B
Python
16 lines
269 B
Python
"""
|
|
User 의존성 주입 모듈
|
|
"""
|
|
|
|
from app.user.dependencies.auth import (
|
|
get_current_user,
|
|
get_current_user_optional,
|
|
get_current_admin,
|
|
)
|
|
|
|
__all__ = [
|
|
"get_current_user",
|
|
"get_current_user_optional",
|
|
"get_current_admin",
|
|
]
|