mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
19 lines
537 B
TypeScript
19 lines
537 B
TypeScript
/** Host BFF entry and Loader shell for the Remote contribution assembly. */
|
|
|
|
export {
|
|
ApiRemoteSessionNotFound,
|
|
ApiRemoteSubagentSessionOwnership,
|
|
apiRemoteSubagentOwnershipError,
|
|
createApiRemoteAgentResolver,
|
|
hasApiRemoteSubagentOwner,
|
|
inspectApiRemoteSession,
|
|
} from './agent-lookup.ts'
|
|
export type {
|
|
ApiRemoteAgentOptions,
|
|
ApiRemoteAgentResult,
|
|
ApiRemoteLookupError,
|
|
} from './agent-lookup.ts'
|
|
|
|
/** Host plugin body; the selected contributions mount only in Client environments. */
|
|
export function apply(): void {}
|