migrate ResourceAuthenticator into here from separate package
[squeep-authentication-module] / index.js
1 'use strict';
2
3 const Authenticator = require('./lib/authenticator');
4 const ResourceAuthenticator = require('./lib/resource-authenticator');
5 const SessionManager = require('./lib/session-manager');
6 const stdioCredential = require('./lib/stdio-credential');
7 const templateHelpers = require('./lib/template/helpers');
8
9 module.exports = {
10 Authenticator,
11 ResourceAuthenticator,
12 SessionManager,
13 stdioCredential,
14 ...templateHelpers,
15 };