X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=index.js;h=b4818641d2c3e45ffb36d71a39254ebc1cfbaa95;hb=ff66dd49a1b54935a20ea6e15bd036b8acd5e170;hp=53b799ea719bfa6b21fee757dfa6f3d44aab176f;hpb=53ef948ea83106e82d55e60d6695a15e94bf725e;p=squeep-authentication-module diff --git a/index.js b/index.js index 53b799e..b481864 100644 --- a/index.js +++ b/index.js @@ -1,11 +1,15 @@ 'use strict'; const Authenticator = require('./lib/authenticator'); +const ResourceAuthenticator = require('./lib/resource-authenticator'); const SessionManager = require('./lib/session-manager'); const stdioCredential = require('./lib/stdio-credential'); +const templateHelpers = require('./lib/template/helpers'); module.exports = { Authenticator, + ResourceAuthenticator, SessionManager, stdioCredential, + ...templateHelpers, };