vibe-link-server / test_app.py
Lcmind
test: add simple test app to verify HF Spaces setup
30536e5
"""Simple test app to verify HF Spaces setup."""
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"status": "working", "message": "Test app is running!"}
@app.get("/health")
def health():
return {"status": "healthy"}