1
0
This commit is contained in:
2026-03-30 09:54:38 +00:00
commit 84fc5e4b14
10 changed files with 278 additions and 0 deletions

View File

@@ -0,0 +1 @@
"""CommentAutomation package."""

View File

@@ -0,0 +1,14 @@
from fastapi import FastAPI
from pydantic import BaseModel
app = FastAPI(title="CommentAutomation")
class HealthResponse(BaseModel):
status: str
@app.get("/health", response_model=HealthResponse)
def health() -> HealthResponse:
return HealthResponse(status="ok")