/* route.ts spboucher.ai Web Author: Simon-Pierre Boucher Mail: contact@spboucher.ai */ import { NextResponse } from "next/server"; export function GET() { return NextResponse.json({ status: "ok", service: "spboucher-ai" }); }