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