7 lines
101 B
Python
7 lines
101 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class AuthLoginResponse(BaseModel):
|
|
jwt_token: str
|
|
ok: bool
|