Files
fx-serverless/packer/fixture/p3/fx.js
Minghe d7130c4e28 support a project with multiple files (#392)
* support a project with multiple files
* fix lint issue
* fix test
2019-12-05 17:57:39 +08:00

7 lines
102 B
JavaScript

const say = require('./helper')
module.exports = (ctx) => {
say("hi")
ctx.body = 'hello world'
}