// src/client/pages/inventory.routes.ts
// Routes configuration for Inventory page

import type { RouteRecordRaw } from 'vue-router';

/**
 * Routes for Inventory page module
 */
export const inventoryRoutes: RouteRecordRaw[] = [
  {
    path: 'inventory',
    component: () => import('./InventoryPage.vue'),
    meta: { moduleName: 'inventory', resource: 'inventory', action: 'read' },
  },
];
