nestjs example

This commit is contained in:
Andras Bacsai
2024-06-03 14:26:12 +02:00
parent 884c2fb0d2
commit 7c3f09da52
16 changed files with 9090 additions and 0 deletions

View File

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