import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { EthiopianCalendarComponent } from './ethiopian-calendar.component';
import { EthiopianCalendarService } from './ethiopian-calendar.service';

@NgModule({
  declarations: [],
  imports: [
    CommonModule,
    FormsModule,
    EthiopianCalendarComponent
  ],
  exports: [
    EthiopianCalendarComponent
  ],
  providers: [
    EthiopianCalendarService
  ]
})
export class EthiopianCalendarModule { } 