'use strict'; /** * `<%= id %>` policy. */ module.exports = async (ctx, next) => { // Add your own logic here. console.log('In <%= id %> policy.'); await next(); };