Basic Controller with Service Example
A basic example of the Vovk.ts controller and a service with no validation.
Result
Code
BasicService.ts
src/modules/basic-with-service/BasicService.ts
export default class BasicService {
static getHello() {
return { greeting: 'Hello world from a service!' };
}
}
Related Documentation
Last updated on