Files
sentinel/app/schemas/auth.py
chy88 ab1bd90c65 feat(core): 初始化 Key-IP Sentinel 服务与部署骨架
- 搭建 FastAPI、Redis、PostgreSQL、Nginx 与 Docker Compose 基础结构
- 实现反向代理、首用绑定、拦截告警、归档任务和管理接口
- 提供 Vue3 管理后台初版,以及 uv/requirements 双依赖配置
2026-03-04 00:18:33 +08:00

14 lines
270 B
Python

from __future__ import annotations
from pydantic import BaseModel, Field
class LoginRequest(BaseModel):
password: str = Field(min_length=1, max_length=256)
class TokenResponse(BaseModel):
access_token: str
token_type: str = "bearer"
expires_in: int