15 lines
350 B
TypeScript
15 lines
350 B
TypeScript
|
import { Injectable } from '@angular/core';
|
||
|
import { Observable } from 'rxjs/Observable';
|
||
|
import { RPCService } from '@loafer/ng-rpc';
|
||
|
import { MetaCrawler, MetaNotification } from '@overflow/commons-typescript/model/meta';
|
||
|
|
||
|
@Injectable()
|
||
|
export class MetaNotificationService {
|
||
|
|
||
|
public constructor(
|
||
|
private rpcService: RPCService,
|
||
|
) {
|
||
|
|
||
|
}
|
||
|
}
|