14 lines
239 B
TypeScript
14 lines
239 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { RPCModule } from '@loafer/ng-rpc';
|
||
|
|
||
|
import {
|
||
|
SUBSCRIBERS,
|
||
|
} from './subscriber';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
RPCModule.forFeature(SUBSCRIBERS),
|
||
|
],
|
||
|
})
|
||
|
export class ProbeRPCModule { }
|