Files
karibeo_api/src/app.service.ts
2025-10-10 21:47:56 -04:00

9 lines
142 B
TypeScript
Executable File

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