Initial commit
This commit is contained in:
8
app/routers/auth.py
Normal file
8
app/routers/auth.py
Normal 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"])
|
||||
Reference in New Issue
Block a user