Minimal fastapi api to test redirects
This commit is contained in:
commit
c966bef31a
|
@ -0,0 +1,42 @@
|
||||||
|
from fastapi import FastAPI
|
||||||
|
app = FastAPI()
|
||||||
|
|
||||||
|
@app.get("/f1")
|
||||||
|
async def f1():
|
||||||
|
return {
|
||||||
|
"name": "f1",
|
||||||
|
"slash": False,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@app.get("/d1")
|
||||||
|
async def f1():
|
||||||
|
return {
|
||||||
|
"name": "d1",
|
||||||
|
"slash": False,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@app.get("/d1/f2")
|
||||||
|
async def f1():
|
||||||
|
return {
|
||||||
|
"name": "f2",
|
||||||
|
"slash": False,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@app.get("/d2/")
|
||||||
|
async def f1():
|
||||||
|
return {
|
||||||
|
"name": "d2",
|
||||||
|
"slash": True,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@app.get("/d2/f3")
|
||||||
|
async def f1():
|
||||||
|
return {
|
||||||
|
"name": "f3",
|
||||||
|
"slash": False,
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
fastapi
|
||||||
|
uvicorn
|
Loading…
Reference in New Issue