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

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