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

6 lines
121 B
TypeScript

module.exports = class say {
hello(req: any) {
return `Hello ${req.data.to} from a TypeScript file!`
}
}