16 lines
223 B
JavaScript
16 lines
223 B
JavaScript
|
/**
|
||
|
* Module dependencies.
|
||
|
*/
|
||
|
var Strategy = require('./strategy');
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Expose `Strategy` directly from package.
|
||
|
*/
|
||
|
exports = module.exports = Strategy;
|
||
|
|
||
|
/**
|
||
|
* Export constructors.
|
||
|
*/
|
||
|
exports.Strategy = Strategy;
|