mirror of
https://github.com/testdrivenio/fastapi-sqlmodel-alembic.git
synced 2025-08-16 18:21:08 +08:00
9 lines
112 B
Python
9 lines
112 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/ping")
|
|
async def pong():
|
|
return {"ping": "pong!"}
|