Bump mocha from 8.3.1 to 8.3.2 (#268)
[poolifier.git] / tests / worker-files / cluster / echoWorker.js
CommitLineData
325f50bc 1'use strict'
1a81f8af 2const { ClusterWorker, KillBehaviors } = require('../../../lib/index')
325f50bc
S
3
4function echo (data) {
5 return data
6}
7
74a2a194 8module.exports = new ClusterWorker(echo)