# tools/core/constants/converge.constants.ts

> 6 lines of code and 5 definitions.

Tree: Coordination tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/coordination#file-coordination-tools-core-constants-converge-constants-ts
Source text: https://banes-lab.com/assets/sources/source.46634a20d546d7dc2fd7e9452ce84373ebe109ec5b24752dc7681c741843cc97.generated.txt

## Definitions

- `ENTRYPOINTS` (lexical_declaration, line 3)
- `CORE` (lexical_declaration, line 5)
- `CONVERGENCE_ENTRYPOINT` (lexical_declaration, line 7, exported)
- `CONVERGENCE_VALIDATOR` (lexical_declaration, line 9, exported)
- `CONVERGENCE_SOURCES` (lexical_declaration, line 11, exported)

## Source

```typescript
import { surfacePath } from "../../../config/surface.config.ts";

const ENTRYPOINTS = surfacePath("entrypoints");

const CORE = surfacePath("core");

export const CONVERGENCE_ENTRYPOINT = `${ENTRYPOINTS}/converge.entrypoint.ts`;

export const CONVERGENCE_VALIDATOR = `${CORE}/validators/converge.validator.ts`;

export const CONVERGENCE_SOURCES: readonly string[] = [CONVERGENCE_ENTRYPOINT, CONVERGENCE_VALIDATOR];
```
