@servant/servant-discovery
Version:
Servant discovery library that can communicate with other servant processes.
7 lines (6 loc) • 405 B
TypeScript
import { Command, CommandType } from "./base";
import { CommandData, commandData } from "./data";
import { CommandHello, commandHello } from "./hello";
import { CommandPing, commandPing } from "./ping";
import { CommandClose, commandClose } from "./close";
export { Command, CommandType, CommandHello, commandHello, CommandPing, commandPing, CommandData, commandData, CommandClose, commandClose, };