Skip to content

Commit 79e422e

Browse files
authored
Merge pull request #68 from netlify/JakeChampion-patch-1
1 parent 0646ffe commit 79e422e

File tree

1 file changed

+3
-3
lines changed
  • examples/edge-functions/netlify/edge-functions

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import type { Context, Config } from "@netlify/edge-functions";
1+
import type { Config } from "@netlify/edge-functions";
22

3-
export default async (request: Request, context: Context) => {
3+
export default async () => {
44
return Response.json({ hello: "world" });
55
};
66

77
export const config: Config = {
88
path: "/json",
9-
};
9+
};

0 commit comments

Comments
 (0)