Files
Vendaweb-api/src/app.service.ts
Felipe Batista 47e7f75720 commit
2025-01-27 17:44:27 -03:00

9 lines
142 B
TypeScript

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