13 lines
176 B
Plaintext
Raw Normal View History

2016-03-25 22:43:42 +01:00
'use strict';
/**
* `<%= id %>` policy.
*/
2017-03-02 12:28:06 +01:00
module.exports = async (ctx, next) => {
// Add your own logic here.
2017-03-02 12:28:06 +01:00
console.log('In <%= id %> policy.');
2016-03-25 22:43:42 +01:00
await next();
2016-03-25 22:43:42 +01:00
};