Merge pull request #145 from Tria-plc/feat/payment-microservice

Feat/payment microservice
This commit is contained in:
Eyob T.
2026-06-13 10:32:08 +03:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -56,6 +56,7 @@ export class PaymentClientService {
body?: unknown, body?: unknown,
): Promise<T> { ): Promise<T> {
const url = `${this.baseUrl}${path}`; const url = `${this.baseUrl}${path}`;
this.logger.log(url);
try { try {
const response = await firstValueFrom( const response = await firstValueFrom(
this.http.request<T>({ this.http.request<T>({

View File

@@ -37,4 +37,4 @@ module.exports = {
}, },
}, },
plugins: [], plugins: [],
}; };