fudge assets handling for now

This commit is contained in:
aj 2017-09-06 21:32:23 +00:00
parent 614822730d
commit 7e0d866e21
1 changed files with 11 additions and 0 deletions

11
assets.js Normal file
View File

@ -0,0 +1,11 @@
'use strict';
module.exports.create = function (bigconf, deps, app) {
app.post( '/session', function (req, res, next) {
console.log('[issuer@oauth3.org] POST /session');
next();
});
return app;
};