UNPKG

@barchart/common-node-js

Version:

Common classes, utilities, and functions for building Node.js servers

22 lines (17 loc) 381 B
const Container = require('./../Container'), RelayEndpoint = require('./RelayEndpoint'); module.exports = (() => { 'use strict'; class RelayContainer extends Container { constructor(port, path, secure) { super(port, path, secure); } _getEndpointType() { return RelayEndpoint; } toString() { return '[RelayContainer]'; } } return RelayContainer; })();