092_UI_core / src /modules /notifications /notifications.module.ts
anotherath's picture
fix ui and core
639bb77
import { Module } from '@nestjs/common';
import { NotificationsController } from './notifications.controller';
import { NotificationsService } from './notifications.service';
import { SupabaseModule } from '../../database/supabase.module';
import { RedisModule } from '../../redis/redis.module';
@Module({
imports: [SupabaseModule, RedisModule],
controllers: [NotificationsController],
providers: [NotificationsService],
exports: [NotificationsService],
})
export class NotificationsModule {}