Initial commit

This commit is contained in:
pptx704
2025-08-03 03:48:31 +03:00
commit 5a0e23cea8
23 changed files with 2551 additions and 0 deletions

0
app/routers/__init__.py Normal file
View File

8
app/routers/auth.py Normal file
View File

@ -0,0 +1,8 @@
from fastapi import APIRouter, Depends, HTTPException, status
from app import schemas
from app.repositories import auth
from app.security import create_jwt_token
from app.settings import settings
router = APIRouter(prefix="", tags=["auth"])