first commit + some progress
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
function NullStore(options) {
|
||||
}
|
||||
|
||||
NullStore.prototype.store = function(req, cb) {
|
||||
cb();
|
||||
}
|
||||
|
||||
NullStore.prototype.verify = function(req, providedState, cb) {
|
||||
cb(null, true);
|
||||
}
|
||||
|
||||
|
||||
module.exports = NullStore;
|
||||
Reference in New Issue
Block a user