Apply the accepted pre-release package, service, type, directory, and role renames as one repository-wide change.
13 lines
403 B
JavaScript
13 lines
403 B
JavaScript
#!/usr/bin/env node
|
|
/**
|
|
* Closed-runtime JSON-RPC agent bin. Bare plugins resolve from the installed
|
|
* runtime closure while relative plugins remain configuration-relative.
|
|
*
|
|
* @module @deepseek-ai/dsh-sdk-jsonrpc-demo/packaged-bin
|
|
*/
|
|
|
|
import { runJsonrpcAgent } from './runner.ts'
|
|
|
|
/* v8 ignore next -- exercised through the built Python runtime carriers */
|
|
await runJsonrpcAgent(import.meta.url)
|