migrate ResourceAuthenticator into here from separate package
[squeep-authentication-module] / index.js
index 5d9da0c4c3b931845ea1edca8fbfdccca3cef3da..b4818641d2c3e45ffb36d71a39254ebc1cfbaa95 100644 (file)
--- a/index.js
+++ b/index.js
@@ -1,12 +1,14 @@
 '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,