4 lines
79 B
JavaScript
4 lines
79 B
JavaScript
module.exports = class say {
|
|
hello(req) { return `Hello ${req.data.to}!` }
|
|
}
|