Paperjet/backend/app/api/v1/__init__.py
Elijah c545d4b17d
Some checks failed
Automated Container Build / build-and-push (push) Failing after 3s
CI / Backend (Python) (push) Failing after 28s
CI / Frontend (TypeScript) (push) Failing after 5m8s
Initial commit with Phase 0 Scaffolding
2026-06-10 18:28:17 -07:00

10 lines
241 B
Python

"""API v1 router — aggregates all sub-routers."""
from fastapi import APIRouter
from app.api.v1.health import router as health_router
router = APIRouter(prefix="/api/v1")
# Health (unauthenticated)
router.include_router(health_router)