Initial commit
This commit is contained in:
17
src/main.ts
Normal file
17
src/main.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { useNodesStore } from '@/stores/nodesStore'
|
||||
import { useProvidersStore } from '@/stores/providersStore'
|
||||
import { useServicesStore } from '@/stores/servicesStore'
|
||||
|
||||
/**
|
||||
* File Manager Module Boot Script
|
||||
*
|
||||
* This script is executed when the file_manager module is loaded.
|
||||
* It initializes the stores which manage file nodes (files and folders) state.
|
||||
*/
|
||||
|
||||
console.log('[FileManager] Booting File Manager module...')
|
||||
|
||||
console.log('[FileManager] File Manager module booted successfully')
|
||||
|
||||
// Export stores for external use if needed
|
||||
export { useNodesStore, useProvidersStore, useServicesStore }
|
||||
Reference in New Issue
Block a user