Files
cloud-cap-samples/hello/srv/world.ts
2024-07-16 15:29:45 +02:00

7 lines
159 B
TypeScript

import cds from '@sap/cds'
export class say extends cds.ApplicationService {
hello (to : String = 'World') {
return `Hello ${to} from TypeScript!`
}
}