This commit is contained in:
2025-12-15 13:34:15 +01:00
parent 217337862c
commit 129c63c362
26 changed files with 1353 additions and 0 deletions

View File

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