9 lines
243 B
Python
9 lines
243 B
Python
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"])
|