Files
codegraph/src/sync/index.ts
T
2026-01-18 16:25:00 -06:00

19 lines
435 B
TypeScript

/**
* Sync Module
*
* Provides synchronization functionality for keeping the code graph
* up-to-date with file system changes.
*
* Components:
* - Git hooks for automatic post-commit syncing
* - Content hashing for change detection (in extraction module)
* - Incremental reindexing (in extraction module)
*/
export {
GitHooksManager,
createGitHooksManager,
HookInstallResult,
HookRemoveResult,
} from './git-hooks';