- 固定48强基准数据、同步种子与后台世界杯夺冠页 - 补全 user_preferences 迁移文件;新增启动指南与默认数据说明 Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
369 B
TypeScript
12 lines
369 B
TypeScript
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 {}
|