mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2026-03-13 10:32:25 +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')
|