/** * Compute allocation API — submit and manage scheduler-backed compute. * * All routes live under /api/compute and are auth-protected like the rest of the * API. They are no-ops (return `enabled: false`) when no scheduler is detected. */ import { FastifyInstance } from 'fastify'; export default function computeRoutes(fastify: FastifyInstance): Promise;