eduverse-backend / src /modules /search /search.module.ts
tarekdx3's picture
Sprint 3 Done and TESTED
e67d35c
Raw
History Blame Contribute Delete
550 Bytes
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { SearchIndex } from './entities/search-index.entity';
import { SearchHistory } from './entities/search-history.entity';
import { SearchService } from './services/search.service';
import { SearchController } from './controllers/search.controller';
@Module({
imports: [TypeOrmModule.forFeature([SearchIndex, SearchHistory])],
controllers: [SearchController],
providers: [SearchService],
exports: [SearchService],
})
export class SearchModule {}