import type { Route } from '@chubbyts/chubbyts-framework/dist/router/route';
import { createPatchRoute } from '@chubbyts/chubbyts-framework/dist/router/route';

const route: Route = createPatchRoute({
path: '/api/users/:id',
handler: userUpdateHandler,
});