export const projectRoutes = { 'create': '/api/projects', getById: (id: string) => `/api/projects/${id}`, getProjectByCustomerId: (customerId: string) => `/api/projects/customer/${customerId}` } ;