Files
people_manager/src/main.ts
2026-02-24 17:38:48 -05:00

15 lines
380 B
TypeScript

/**
* People Manager Module Boot
*/
console.log('[People Manager] Booting module...')
console.log('[People Manager] Module booted successfully...')
// CSS will be injected by build process
//export const css = ['__CSS_FILENAME_PLACEHOLDER__']
// Export services, stores and models for external use
export * from '@/services'
export * from '@/stores'
export * from '@/models'