blob: b75ad1a127e9677ab0f3f30f1bfbf8f41b52fba5 (
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
27
28
29
30
31
32
|
import { NgModule } from '@angular/core'
import { SharedMainModule } from '../shared-main/shared-main.module'
import { FeatureBooleanComponent } from './feature-boolean.component'
import { InstanceFeaturesTableComponent } from './instance-features-table.component'
import { InstanceFollowService } from './instance-follow.service'
import { InstanceStatisticsComponent } from './instance-statistics.component'
import { InstanceService } from './instance.service'
@NgModule({
imports: [
SharedMainModule
],
declarations: [
FeatureBooleanComponent,
InstanceFeaturesTableComponent,
InstanceStatisticsComponent
],
exports: [
FeatureBooleanComponent,
InstanceFeaturesTableComponent,
InstanceStatisticsComponent
],
providers: [
InstanceFollowService,
InstanceService
]
})
export class SharedInstanceModule { }
|