7 lines
102 B
JavaScript
7 lines
102 B
JavaScript
const say = require('./helper')
|
|
|
|
module.exports = (ctx) => {
|
|
say("hi")
|
|
ctx.body = 'hello world'
|
|
}
|