Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timonson committed Apr 7, 2024
1 parent 44231a4 commit 574d92b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,16 @@ export const createPatchRoute = createRoute("PATCH");
export const createPostRoute = createRoute("POST");
export const createPutRoute = createRoute("PUT");
export const createTraceRoute = createRoute("TRACE");

export const routes = {
all: createAllRoute,
connect: createConnectRoute,
delete: createDeleteRoute,
get: createGetRoute,
head: createHeadRoute,
options: createOptionsRoute,
patch: createPatchRoute,
post: createPostRoute,
put: createPutRoute,
trace: createTraceRoute,
};

0 comments on commit 574d92b

Please sign in to comment.