16 lines
390 B
TypeScript
16 lines
390 B
TypeScript
/**
|
|
* Documents Manager Module Boot
|
|
*/
|
|
|
|
console.log('[Documents Manager] Booting module...')
|
|
|
|
console.log('[Documents 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'
|