Files
formularios_api/src/app.service.ts
T

9 lines
142 B
TypeScript
Raw Normal View History

2025-03-26 14:39:56 -06:00
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
}
}