1
0
mirror of https://github.com/advplyr/audiobookshelf.git synced 2025-03-01 00:15:54 +01:00
audiobookshelf/server/libs/passportLocal/index.js

21 lines
318 B
JavaScript
Raw Normal View History

//
// modified for audiobookshelf
// Source: https://github.com/jaredhanson/passport-local
//
/**
* Module dependencies.
*/
var Strategy = require('./strategy');
/**
* Expose `Strategy` directly from package.
*/
exports = module.exports = Strategy;
/**
* Export constructors.
*/
exports.Strategy = Strategy;