init commit. Skeleton prepared

This commit is contained in:
2025-08-08 19:48:03 +09:00
commit d58302c2c8
127 changed files with 1329 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from fastapi import FastAPI
from .api.routes.ping import router as ping_router
app = FastAPI(title="PAYMENTS Service")
@app.get("/health")
def health():
return {"status": "ok", "service": "payments"}
# v1 API
app.include_router(ping_router, prefix="/v1")