UNPKG

@clusterio/host

Version:

Implementation of Clusterio host server

11 lines (9 loc) 410 B
import { bootstrap } from "./host"; export { default as BaseHostPlugin } from "./src/BaseHostPlugin"; export { default as BaseInstancePlugin } from "./src/BaseInstancePlugin"; export { default as Host, HostRouter } from "./src/Host"; export { default as Instance } from "./src/Instance"; export { default as InstanceConnection } from "./src/InstanceConnection"; if (module === require.main) { bootstrap(); }