UNPKG

@manzoomeh/basicore.server

Version:

java script version of Manzoomeh Negaran http web server for nodejs

16 lines (14 loc) 253 B
export default class HostEndPoint { /** * * @param {string} ip * @param {number} port */ constructor(ip, port) { this._ip = ip; this._port = port; } listen() { throw new Error("Not Implemented..."); } }