mirror of
https://github.com/fastapi/fastapi.git
synced 2026-04-05 23:55:06 -04:00
9 lines
173 B
Python
9 lines
173 B
Python
from fastapi import FastAPI, Form
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.post("/login/")
|
|
async def login(username: str = Form(), password: str = Form()):
|
|
return {"username": username}
|