1 2 3 4 5 6 7 8 9 10 11 12 13 14require('dotenv').config(); const handler = require('./handler'); ( async() => { let result = await handler.hello({ body: { name: "cli" } }); console.log(result); } ) ()
1 2 3 4 5 6 7 8 9 10 11 12 13 14
require('dotenv').config(); const handler = require('./handler'); ( async() => { let result = await handler.hello({ body: { name: "cli" } }); console.log(result); } ) ()