1module.exports = { 2 hello: async (options) => { 3 console.log(`Hello, ${options.name}!`); 4 }, 5}; 6