Newer
Older
cortex-hub / ai-hub / app / api / routes / general.py
from fastapi import APIRouter

router = APIRouter(tags=["General"])

@router.get("/", summary="Check Service Status")
def read_root():
    return {"status": "AI Model Hub is running!"}