81172bda94
Update all references across source files, documentation, and configuration to reflect the new package scope and name. This includes updating `.npmrc` registry config, install instructions, module examples, and all import path comments throughout the codebase.
13 lines
451 B
JavaScript
13 lines
451 B
JavaScript
/**
|
|
* 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';
|