Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcardeenas authored Apr 4, 2020
1 parent 42c4bce commit 8feb86d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,16 @@ function start(client) {
##### Sulla will remember the session so there is no need to authenticate everytime.

##### Multiples sessions can be created at the same time by pasing a session name to `create()` function:

```javascript
sulla.create().then((client) => start(client));
sulla.create('another').then((client2) => startAnother(client2));
// Init sales whatsapp bot
sulla.create('sales').then((salesBot) => {...});

// Init support whatsapp bot
sulla.create('support').then((supportBot) => {...});
```
<br>
<br>

## Usage

Expand Down

0 comments on commit 8feb86d

Please sign in to comment.