isaacgr/jaysonic

View on GitHub
src/server/protocol/tcp.js

Summary

Maintainability
A
0 mins
Test Coverage
const JsonRpcServerProtocol = require("./base");

/**
 * Creates instance of TcpServerProtocol
 * @extends JsonRpcServerProtocol
 */
class TcpServerProtocol extends JsonRpcServerProtocol {}

module.exports = TcpServerProtocol;