Goki lock sdk for nodejs
how to install
yarn add @goki-lock/node
or
npm install @goki-lock/node
how to use
import GokiLockSDK from '@goki-lock/node'
const lockdata = '...'
GokiLockSDK.unlock(lockdata)
.then(() => {
console.log('unlock success')
})
.catch(err => {
console.log('unlock failed', err)
})