Files
funcionarios_api/src/app.service.ts
T
evenegas 55a7081818 test
2025-08-07 15:27:13 -06:00

9 lines
142 B
TypeScript

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