Files
funcionarios_api/src/app.service.ts
T

9 lines
142 B
TypeScript
Raw Normal View History

2025-08-07 15:27:13 -06:00
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
}
}