import { Module } from '@nestjs/common'; import { MarketsModule } from '../odds/markets.module'; import { MatchesService } from './matches.service'; import { OutrightService } from './outright.service'; @Module({ imports: [MarketsModule], providers: [MatchesService, OutrightService], exports: [MatchesService, OutrightService], }) export class MatchesModule {}