Files
keyvault/api/src/app.service.ts
Bastian Wagner c00aad559d auth
2024-09-12 21:33:11 +02:00

10 lines
179 B
TypeScript

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