slavery-js
Version:
A simple clustering app that allows you to scale an application on multiple thread, containers or machines
13 lines (8 loc) • 480 B
text/typescript
import entrypoint from './entry.js'
import { isSlaveMethods, isServiceOptions, isMasterCallback } from './typeGuards.js'
import makeProxyObject from './makeProxyObject.js'
import extractFunctions from './extractFunctions.js'
import PeerDiscoverer from './peerDiscovery/index.js'
import type { Options } from './types/index.js'
export default entrypoint;
export { Options, PeerDiscoverer, makeProxyObject, extractFunctions, isSlaveMethods, isServiceOptions, isMasterCallback }