9 lines
226 B
JavaScript
9 lines
226 B
JavaScript
// Load modules.
|
|
const Strategy = require('./strategy');
|
|
// const AuthorizationError = require('./errors/authorizationerror');
|
|
|
|
// Expose Strategy.
|
|
exports = module.exports = Strategy;
|
|
|
|
// Exports.
|
|
exports.Strategy = Strategy; |