mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 02:26:46 +00:00
13 lines
193 B
Python
13 lines
193 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/users")
|
|
async def read_users():
|
|
return ["Rick", "Morty"]
|
|
|
|
|
|
@app.get("/users")
|
|
async def read_users2():
|
|
return ["Bean", "Elfo"]
|