mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-23 06:59:29 -07:00
Add exports
This commit is contained in:
parent
67775b0371
commit
1388227fe4
1 changed files with 3 additions and 0 deletions
|
@ -18,6 +18,7 @@ const bent = require('bent')
|
||||||
const req = bent('GET')
|
const req = bent('GET')
|
||||||
const serviceproviders = require('./serviceproviders')
|
const serviceproviders = require('./serviceproviders')
|
||||||
const claimVerification = require('./claimVerification')
|
const claimVerification = require('./claimVerification')
|
||||||
|
const utils = require('./utils')
|
||||||
|
|
||||||
const verify = async (uri, fingerprint, opts) => {
|
const verify = async (uri, fingerprint, opts) => {
|
||||||
if (!opts) { opts = {} }
|
if (!opts) { opts = {} }
|
||||||
|
@ -69,3 +70,5 @@ const verify = async (uri, fingerprint, opts) => {
|
||||||
|
|
||||||
exports.verify = verify
|
exports.verify = verify
|
||||||
exports.serviceproviders = serviceproviders
|
exports.serviceproviders = serviceproviders
|
||||||
|
exports.claimVerification = claimVerification
|
||||||
|
exports.utils = utils
|
||||||
|
|
Loading…
Reference in a new issue