import { Injectable } from '@angular/core'; import { Observable, Subject } from 'rxjs'; import { HttpClient } from '@angular/common/http'; @Injectable({ providedIn: 'root' }) export class PlantouneService { plantLiked$ = new Subject(); constructor(private httpClient: HttpClient) { } getData(): Observable { return this.httpClient.get('http://localhost:3000/list_products'); } }