Sign in
apache
/
devlake
/
refs/heads/javascript-mvp
/
.
/
src
/
collection
/
dispatch.js
blob: 4f9491931b8054b838fbfb56a37ec8d023abfbb8 [
file
]
const
producer
=
require
(
'../queue/producer'
)
module
.
exports
=
{
async createJobs
(
message
)
{
await producer
.
produce
(
JSON
.
stringify
(
message
),
'collection'
)
}
}