Skip to content

Commit

Permalink
Readme updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rudijs committed Sep 27, 2014
1 parent f533630 commit ef3797c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ var consumerOptions = {
url: process.env.RABBITMQ_URL || 'localhost'
};
var consumer = require('rpc-consumer-factory').create(consumerOptions);
var consumer = require('amqp-rpc-factory').consumer.create(consumerOptions);
consumer.run();
```

*Publisher*

```
var rpcClientFactory = require('rpc-publisher-factory');
var rpcClientFactory = require('amqp-rpc-factory').publisher;
var client = rpcClientFactory.create({
standalone: true,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "amqp-rpc-factory",
"version": "0.0.6",
"version": "0.0.7",
"description": "Nodejs AMQP RPC Consumer and Publisher Factory",
"repository": {
"type": "git",
Expand Down

0 comments on commit ef3797c

Please sign in to comment.