mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 10:36:39 +00:00
8 lines
182 B
Python
8 lines
182 B
Python
from fastapi import FastAPI, Form
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.post("/login/")
|
|
async def login(*, username: str = Form(...), password: str = Form(...)):
|
|
return {"username": username}
|