index.js 213 B

1234567891011
  1. // Load modules.
  2. var Strategy = require('./strategy');
  3. // Expose Strategy.
  4. exports = module.exports = Strategy;
  5. // Exports.
  6. exports.Strategy = Strategy;
  7. exports.SessionNonceStore = require('./store/session');