satyarohith / sift

Sift is a routing and utility library for Deno Deploy.

Home Page:https://deno.land/x/sift

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

add support for composition

satyarohith opened this issue · comments

We might have to introduce a new function named router() that can take the same params as serve()

serve({
  "/api": router({
    "/users": (_req) => new Response("users"),
  }),
});