7 lines
159 B
TypeScript
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!`
|
|
}
|
|
}
|