kubo-rpc-client-esm-cjs
Version:
A client library for the Kubo RPC API
14 lines (11 loc) • 321 B
JavaScript
import { configure } from './lib/configure.js'
import errCode from 'err-code'
export const createStart = configure(api => {
/**
* @type {import('./types').RootAPI["start"]}
*/
const start = async (options = {}) => {
throw errCode(new Error('Not implemented'), 'ERR_NOT_IMPLEMENTED')
}
return start
})