/** * Admin Server Actions * * These are exported separately from admin/index.js to avoid bundling * server-side code (which includes database imports) into client components. * * Usage: * import { getDashboardStats, getModuleDashboardStats } from '@zen/core/admin/actions'; */ export { getDashboardStats } from './actions/statsActions.js'; export { getAllModuleDashboardStats as getModuleDashboardStats } from '@zen/core/modules/actions';