feature: sort imports to try to ensure parameter paths are less specific

This commit is contained in:
Andy Burke 2025-06-25 20:07:08 -07:00
parent c92ef0688b
commit 4f68a64a88
4 changed files with 72 additions and 10 deletions

View file

@ -0,0 +1,8 @@
export function GET(_req: Request, _meta: Record<string, any>): Response {
return new Response('hello', {
status: 200,
headers: {
'Content-Type': 'text/plain'
}
});
}