accountant-ui/src/operations/operation.module.ts

36 lines
879 B
TypeScript
Raw Normal View History

2017-07-27 13:57:40 +02:00
// vim: set tw=80 ts=2 sw=2 sts=2 :
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { NgLoggerModule, Level } from '@nsalaun/ng-logger';
import { RestangularModule } from 'ngx-restangular';
import { BalanceChartComponent } from './balanceChart.component';
import { CategoryChartComponent } from './category-chart.component';
2017-07-29 16:33:24 +02:00
import { CategoryService } from './category.service'
2017-07-27 13:57:40 +02:00
@NgModule({
imports: [
HttpModule,
CommonModule,
FormsModule,
NgLoggerModule,
RestangularModule,
],
2017-07-29 16:33:24 +02:00
providers: [
CategoryService,
],
declarations: [
BalanceChartComponent,
CategoryChartComponent,
],
entryComponents: [
BalanceChartComponent,
CategoryChartComponent,
]
2017-07-27 13:57:40 +02:00
})
export class OperationModule {}