finance-consumer/apiServer/main.py
2024-11-14 00:03:23 +08:00

7 lines
115 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello world"}