mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-09-03 06:18:22 +00:00
24 lines
931 B
TypeScript
24 lines
931 B
TypeScript
/** Package-owned invariant companion. @module @deepseek-ai/dsh-api-settings-controller/invariant */
|
|
|
|
/* jscpd:ignore-start */
|
|
import type { Context } from '@deepseek-ai/cordis'
|
|
import type { InvariantInstaller } from '@deepseek-ai/dsh-invariants'
|
|
|
|
const PACKAGE_NAME = '@deepseek-ai/dsh-api-settings-controller'
|
|
|
|
/** Cordis companion plugin name. */
|
|
export const name = 'api-settings-controller-invariant'
|
|
/** Service required before the companion can reserve package ownership. */
|
|
export const inject = ['invariants']
|
|
|
|
/**
|
|
* No runtime invariant: the settings and credential seams own storage and
|
|
* update events, while this package only projects their methods onto the wire.
|
|
*/
|
|
const install: InvariantInstaller = () => {}
|
|
|
|
/** Register this package's invariant companion. */
|
|
export const apply = (ctx: Context): Promise<() => void> =>
|
|
Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install))
|
|
/* jscpd:ignore-end */
|