mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-10 03:32:26 +08:00
Initial commit
This commit is contained in:
10
src/api/user_me/__init__.py
Normal file
10
src/api/user_me/__init__.py
Normal file
@@ -0,0 +1,10 @@
|
||||
"""Routes for authenticated user self-service APIs."""
|
||||
|
||||
from fastapi import APIRouter
|
||||
|
||||
from .routes import router as me_router
|
||||
|
||||
router = APIRouter()
|
||||
router.include_router(me_router)
|
||||
|
||||
__all__ = ["router"]
|
||||
1127
src/api/user_me/routes.py
Normal file
1127
src/api/user_me/routes.py
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user