dcb-service-report/src/app.service.ts
Mamadou Khoussa [028918 DSI/DAC/DIF/DS] 8b548f4cdc first commit
2025-11-30 22:41:22 +00:00

9 lines
142 B
TypeScript

import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
}
}