add token response

This commit is contained in:
2025-11-16 17:02:10 +01:00
parent 2c57c9cdc9
commit 3240d5227a
2 changed files with 6 additions and 2 deletions

View File

@@ -4,3 +4,7 @@ from pydantic import BaseModel
class User(BaseModel):
name: str
password: str
class TokenResponse(BaseModel):
token: str