feat: 世界杯48强夺冠盘、管理端调赔与项目文档

- 固定48强基准数据、同步种子与后台世界杯夺冠页

- 补全 user_preferences 迁移文件;新增启动指南与默认数据说明

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-03 16:19:36 +08:00
parent 3b739982a1
commit 95abbcb470
17 changed files with 1157 additions and 92 deletions

View File

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