import { Injectable } from '@nestjs/common'; @Injectable() export class AppService { constructor() {} getHello(): any { return { success: true, date: new Date() }; } }