X-Git-Url: https://git.squeep.com/?p=squeep-authentication-module;a=blobdiff_plain;f=index.js;h=5d9da0c4c3b931845ea1edca8fbfdccca3cef3da;hp=53b799ea719bfa6b21fee757dfa6f3d44aab176f;hb=HEAD;hpb=53ef948ea83106e82d55e60d6695a15e94bf725e 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, };