Files
gob-alert/apps/api/src/app.service.ts
alexandrump 82f3464565 first commit
2026-02-09 01:02:53 +01:00

9 lines
154 B
TypeScript

import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello from gob-alert API';
}
}