Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
op01 committed Oct 13, 2016
1 parent 64839ff commit cf6ed59
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,20 @@
# node-cunet
A library for authenticating with CUNET

Example
-------
```javascript
const cunet=require('./node-cunet');
cunet.auth('58345678','suP3r5ecre+p@ssw0rD')
.then(result => {
if(result){
// auth ok
}
else{
// auth error
}
})
.catch(e => {
// api error
});
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-cunet",
"version": "1.0.0",
"version": "1.0.1",
"description": "A library for authenticating with CUNET",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit cf6ed59

Please sign in to comment.