Initial commit

This commit is contained in:
pptx704
2025-06-14 04:28:24 +03:00
parent 813a7eaf0d
commit 52aa93d67c
22 changed files with 442 additions and 2 deletions

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

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

@ -0,0 +1,14 @@
from app import database, schemas
from fastapi import APIRouter, Depends, status
from sqlalchemy.orm import Session
from ..repositories import auth
from .. import schemas
from ..security import get_user
from ..database import get_db
router = APIRouter(
prefix = "",
tags = ['auth']
)