xtablo-source/infra/app/main.py

7 lines
127 B
Python
Raw Normal View History

2025-02-24 13:58:59 +00:00
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_main():
return {"message": "hello world from traefik"}