Files
fastAPI/app/main.py
2026-05-11 09:44:34 +08:00

9 lines
170 B
Python

from fastapi import FastAPI
app = FastAPI(title="CargoTrace API", version="0.1.0")
@app.get("/")
async def root():
return {"message": "Welcome to CargoTrace API"}