blob: cddea80bf12c80c1589d372b1daa0f76cf7e11f9 (
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
|
import { NgModule } from '@angular/core'
import { SharedFormModule } from '../shared-forms'
import { SharedMainModule } from '../shared-main/shared-main.module'
import { RemoteSubscribeComponent } from './remote-subscribe.component'
import { SubscribeButtonComponent } from './subscribe-button.component'
import { UserSubscriptionService } from './user-subscription.service'
@NgModule({
imports: [
SharedMainModule,
SharedFormModule
],
declarations: [
RemoteSubscribeComponent,
SubscribeButtonComponent
],
exports: [
RemoteSubscribeComponent,
SubscribeButtonComponent
],
providers: [
UserSubscriptionService
]
})
export class SharedUserSubscriptionModule { }
|