Files
people_manager/src/main.ts
2026-02-10 20:30:15 -05:00

19 lines
710 B
TypeScript

import { useCollectionsStore } from '@/stores/collectionsStore'
import { useEntitiesStore } from '@/stores/entitiesStore'
import { useProvidersStore } from '@/stores/providersStore'
import { useServicesStore } from '@/stores/servicesStore'
/**
* People Manager Module Boot Script
*
* This script is executed when the people_manager module is loaded.
* It initializes the peopleStore which manages contacts and address books state.
*/
console.log('[PeopleManager] Booting People Manager module...')
console.log('[PeopleManager] People Manager module booted successfully')
// Export store for external use if needed
export { useCollectionsStore, useEntitiesStore, useProvidersStore, useServicesStore }