This commit is contained in:
Bastian Wagner
2024-09-12 16:06:15 +02:00
parent 14ef69bc58
commit 542f0705e2
2 changed files with 4 additions and 4 deletions

View File

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