10 lines
156 B
JavaScript
Executable File
10 lines
156 B
JavaScript
Executable File
// Load modules.
|
|
var Strategy = require('./strategy');
|
|
|
|
|
|
// Expose Strategy.
|
|
exports = module.exports = Strategy;
|
|
|
|
// Exports.
|
|
exports.Strategy = Strategy;
|