import type { Route } from '@chubbyts/chubbyts-framework/dist/router/route';import { createGetRoute } from '@chubbyts/chubbyts-framework/dist/router/route';const route: Route = createGetRoute({ path: '/api/users/:id', handler: userReadHandler,}); Copy
import type { Route } from '@chubbyts/chubbyts-framework/dist/router/route';import { createGetRoute } from '@chubbyts/chubbyts-framework/dist/router/route';const route: Route = createGetRoute({ path: '/api/users/:id', handler: userReadHandler,});