21 lines
650 B
TypeScript
21 lines
650 B
TypeScript
/**
|
|
* Platform Knowledge — shared exports.
|
|
*
|
|
* Re-exports service configuration and key types from the published
|
|
* @lilith/knowledge-verification-client package.
|
|
*
|
|
* Consumers within the monorepo can import from here for convenience:
|
|
* import { KV_API_PORT, kvApiUrl } from '@platform/tools/platform-knowledge/shared';
|
|
*
|
|
* For the full client API (validation, facts, legal review), import directly:
|
|
* import { validateContent, getPlatformFacts } from '@lilith/knowledge-verification-client';
|
|
*/
|
|
|
|
export {
|
|
KV_API_PORT,
|
|
KV_API_URL,
|
|
CRYSTAL_REDIS_PORT,
|
|
CRYSTAL_POSTGRES_PORT,
|
|
CRYSTAL_REDIS_URL,
|
|
kvApiUrl,
|
|
} from './config';
|