Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
rest.client.ts 592 B
import { HttpService } from '@nestjs/axios';
import { Injectable } from '@nestjs/common';
import { lastValueFrom, map } from 'rxjs';

@Injectable()
export default class RestClientService {
  public constructor(private readonly httpService: HttpService) {}

  public async post(url: string, payload: object) {
    return lastValueFrom(
      this.httpService
        .post(url, payload)
        .pipe(map((response) => response.data)),
    );
  }

  public async get(url: string) {
    return lastValueFrom(
      this.httpService.get(url).pipe(map((response) => response.data)),
    );
  }
}