blob: 9f9f1cdfd9a1f10281a6984eef6c6fbbdf005442 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import { CommonModule } from '@angular/common'
import { NgModule } from '@angular/core'
import { SharedSearchModule } from '@app/shared/shared-search'
import { RemoteInteractionRoutingModule } from './remote-interaction-routing.module'
import { RemoteInteractionComponent } from './remote-interaction.component'
@NgModule({
imports: [
CommonModule,
SharedSearchModule,
RemoteInteractionRoutingModule
],
declarations: [
RemoteInteractionComponent
],
exports: [
RemoteInteractionComponent
],
providers: []
})
export class RemoteInteractionModule { }
|