uci-socket/src/sSocket.js

7 lines
173 B
JavaScript
Raw Permalink Normal View History

2019-01-30 20:14:00 -08:00
// returns an encrypted/secure socket class
import { Server } from 'tls'
import socketClass from './socket-class'
export default (() => {
return socketClass(Server) })()