summaryrefslogtreecommitdiff
path: root/examples/middleware/src/pages/api/logout.ts
blob: b6c6e9e0601ea0e5e7d651e3179f0051a2d9c050 (plain) (blame)
1
2
3
4
5
import type { APIRoute, APIContext } from "astro";

export const GET: APIRoute = async (_: APIContext) => {
  return new Response(null, { status: 200 });
};