import type { Route } from '@chubbyts/chubbyts-framework/dist/router/route';
import type { RoutesByName } from '@chubbyts/chubbyts-framework/dist/router/routes-by-name';
import { createRoutesByName } from '@chubbyts/chubbyts-framework/dist/router/routes-by-name';

const routes: Array<Route> = [];

const routesByName: RoutesByName = createRoutesByName(routes);