Files
cloud-cap-samples/hello/srv/world.js
Pierre Fritsch ae09caf7ad Enable cds watch hello
by moving the `hello` implementation into the subfolder `srv`
2021-08-03 16:01:10 +02:00

4 lines
79 B
JavaScript

module.exports = class say {
hello(req) { return `Hello ${req.data.to}!` }
}