Files
hoppscotch/packages/hoppscotch-backend/src/app.service.ts
2022-12-05 12:36:11 +05:30

9 lines
142 B
TypeScript

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