kubo-rpc-client-esm-cjs
Version:
A client library for the Kubo RPC API
14 lines • 359 B
JavaScript
import { createCmds } from './cmds.js';
import { createNet } from './net.js';
import { createSys } from './sys.js';
/**
* @param {import('../types').Options} config
*/
export function createDiag(config) {
return {
cmds: createCmds(config),
net: createNet(config),
sys: createSys(config)
};
}
//# sourceMappingURL=index.js.map