accountant-ui/src/scheduler/schedule.module.ts
2017-07-22 11:14:52 +02:00

35 lines
834 B
TypeScript

// 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 { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { ToastrModule } from 'ngx-toastr';
import { ScheduleService } from './schedule.service';
import { ScheduleDeleteModalComponent } from './scheduleDeleteModal.component';
@NgModule({
imports: [
HttpModule,
CommonModule,
FormsModule,
NgLoggerModule,
ToastrModule,
NgbModule
],
providers: [
ScheduleService
],
declarations: [
ScheduleDeleteModalComponent
],
entryComponents: [
ScheduleDeleteModalComponent
]
})
export class ScheduleModule {}