import { Injectable } from '@nestjs/common'; @Injectable() export class AppService { getData(): string { return 'Welcome to demo-nestjs!'; } }