feat: added hoppscotch-backend as a package

This commit is contained in:
ankitsridhar16
2022-12-05 12:36:11 +05:30
parent a1d69b3210
commit 75219d457a
16 changed files with 2836 additions and 62 deletions

View File

@@ -0,0 +1,8 @@
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
}
}