This commit is contained in:
evenegas
2025-08-07 15:27:13 -06:00
commit 55a7081818
23 changed files with 12170 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
}
}