passport-wechat
Version:
passport strategy for authenticating with wechat
23 lines (19 loc) • 347 B
JavaScript
/*
* passport-wechat
* http://www.liangyali.com
*
* Copyright (c) 2014 liangyali
* Licensed under the MIT license.
*/
/**
* Module dependencies.
*/
var Strategy = require('./strategy');
/**
* Expose `Strategy` directly from package.
*/
exports = module.exports = Strategy;
/**
* Export constructors.
*/
exports.Strategy = Strategy;