feat: T03+T04 backend - FastAPI, DB models, Rentman integration, admin auth, APScheduler

This commit is contained in:
Implementation Engineer
2026-07-09 01:36:46 +02:00
parent 3bfa54b4b3
commit 15fd1b0f8d
78 changed files with 2174 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
"""Pydantic schemas for admin auth."""
from pydantic import BaseModel
class LoginRequest(BaseModel):
username: str
password: str
class TokenResponse(BaseModel):
access_token: str
token_type: str = "bearer"
class AdminInfo(BaseModel):
username: str