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';
|
|
|
|
|
2017-07-27 14:12:54 +02:00
|
|
|
import { BalanceChartComponent } from './balanceChart.component';
|
2017-07-29 16:33:24 +02:00
|
|
|
import { CategoryService } from './category.service'
|
2017-07-27 14:12:54 +02:00
|
|
|
|
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,
|
|
|
|
],
|
2017-07-27 14:12:54 +02:00
|
|
|
declarations: [
|
|
|
|
BalanceChartComponent,
|
|
|
|
],
|
|
|
|
entryComponents: [
|
|
|
|
BalanceChartComponent,
|
|
|
|
]
|
2017-07-27 13:57:40 +02:00
|
|
|
})
|
|
|
|
export class OperationModule {}
|