X-Git-Url: https://git.squeep.com/?p=squeep-authentication-module;a=blobdiff_plain;f=index.js;h=5d9da0c4c3b931845ea1edca8fbfdccca3cef3da;hp=3e49655a962c5bbaefcfe1e776aa8d7811f5bd25;hb=HEAD;hpb=dd173e6b450cbba8100883514610c9fde83d050a diff --git a/index.js b/index.js index 3e49655..b481864 100644 --- a/index.js +++ b/index.js @@ -1,9 +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, };