File size: 133 Bytes
c71e312
 
 
 
 
 
1
2
3
4
5
6
7
from pydantic import BaseModel

class AuthResponse(BaseModel):
    access_token: str
    token_type: str = "bearer"
    user_id: str