6 lines
93 B
JavaScript
Raw Normal View History

module.exports = async (ctx, next) => {
console.log('in test policy');
await next();
};