uci-socket/src/index.js

9 lines
235 B
JavaScript
Raw Permalink Normal View History

import Socket from './socket'
import sSocket from './sSocket'
import Consumer from './consumer'
export { sSocket as sSocket }
2018-02-17 18:26:17 -08:00
export { Socket as Socket }
export { Consumer as Consumer }
2019-01-30 20:14:00 -08:00
export default { Socket, sSocket, Consumer }