mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2025-08-15 19:30:50 +08:00
8 lines
182 B
Python
8 lines
182 B
Python
from fastapi import Body
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class LoginIn(BaseModel):
|
|
username: str = Body(..., example='long2ice')
|
|
password: str = Body(..., example='123456')
|