cloudflare/vinext

Public

mirrored from https://github.com/cloudflare/vinextAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.0.9

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

tests/fixtures/app-basic/app/api/get-only/route.ts

4lines · modecode

1// Route with only GET — tests HEAD auto-impl and OPTIONS auto-impl
2export async function GET() {
3 return Response.json({ method: "GET" });
4}
5