refactor: financial reports to nestjs

This commit is contained in:
Ahmed Bouhuolia
2025-01-16 12:58:45 +02:00
parent 520d053b36
commit 6dd854178d
91 changed files with 9489 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
export const increment = (n: number = 0) => {
let counter = n;
return () => {
counter += 1;
return counter;
};
};