import { Module } from '@nestjs/common';
import { RayabimehService } from './rayabimeh.service';

@Module({
  providers: [RayabimehService],
  exports: [RayabimehService],
})
export class RayabimehModule {}
