mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 10:36:39 +00:00
17 lines
331 B
Python
17 lines
331 B
Python
from fastapi import FastAPI
|
|
from pydantic import BaseModel, EmailStr
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class UserIn(BaseModel):
|
|
username: str
|
|
password: str
|
|
email: EmailStr
|
|
full_name: str | None = None
|
|
|
|
|
|
# Don't do this in production!
|
|
@app.post("/user/", response_model=UserIn)
|
|
async def create_user(user: UserIn):
|
|
return user
|