import { Injectable } from '@angular/core'; import { Observable } from 'rxjs'; import { RPCService } from '@loafer/ng-rpc'; import { MetaCrawlerMapping } from '@overflow/commons-typescript/model/meta'; @Injectable() export class MetaCrawlerMappingService { public constructor( private rpcService: RPCService, ) { } public readAll(): Observable { return this.rpcService.call('CentralMetaCrawlerMappingService.readAll'); } }