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

const route: Route = createPostRoute({
path: '/api/users',
handler: userCreateHandler,
});