Files
Fulfillment-Backend/schemas/auth/responses.py
2024-03-01 00:07:25 +03:00

7 lines
101 B
Python

from pydantic import BaseModel
class AuthLoginResponse(BaseModel):
jwt_token: str
ok: bool