jackonthemike's picture
Initial commit: InnSight scraper backend with Playwright
d77abf8
raw
history blame contribute delete
200 Bytes
"""
Minimal FastAPI test endpoint.
"""
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
@app.get("/api/test")
async def test():
return {"status": "ok", "message": "FastAPI test works"}