Skip to content

Commit

Permalink
chore: updated examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ernest-okot committed May 4, 2018
1 parent 76b3d64 commit ac64300
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/topic/consume.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

const TopicConsumer = require('../../src/topic/consumer');
const TopicConsumer = require('../../lib');

const [ex, q, ...topics] = process.argv.slice(2);

Expand Down
2 changes: 1 addition & 1 deletion examples/topic/publish.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

const TopicProducer = require('../../src/topic/producer');
const {TopicProducer} = require('../../lib');

const [ex, topic, message] = process.argv.slice(2);

Expand Down

0 comments on commit ac64300

Please sign in to comment.