X-Git-Url: http://git.squeep.com/?p=squeep-authentication-module;a=blobdiff_plain;f=index.js;h=3e49655a962c5bbaefcfe1e776aa8d7811f5bd25;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, };