SPB Git

spb/spboucher.ai Public

spboucher.ai — personal website of Simon-Pierre Boucher.

TypeScript 93.4% HTML 5.5% CSS 1%
239 B · 13 lines typescript
Raw Blame History
1/*2  route.ts3  spboucher.ai Web4  Author: Simon-Pierre Boucher5  Mail: contact@spboucher.ai6*/78import { NextResponse } from "next/server";910export function GET() {11  return NextResponse.json({ status: "ok", service: "spboucher-ai" });12}13