blob: cddea80bf12c80c1589d372b1daa0f76cf7e11f9 (
plain) (
tree)
|
|
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 { }
|