import { Module } from '@nestjs/common';
import { CommunityController } from './community.controller';
import { CommunityPushRepository } from './community-push.repository';
import { CommunityPushService } from './community-push.service';
import { CommunityRepository } from './community.repository';
import { CommunityService } from './community.service';

@Module({
  controllers: [CommunityController],
  providers: [
    CommunityRepository,
    CommunityPushRepository,
    CommunityPushService,
    CommunityService,
  ],
})
export class CommunityModule {}
