视频会议保存

This commit is contained in:
duoaohui
2026-05-18 21:23:00 +08:00
parent fb965cc8c4
commit 5a5706c236
20 changed files with 1211 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
// Package transcribe 提供 transcribe 模块的 Wire Provider 集合
package transcribe
import (
"github.com/echochat/backend/app/transcribe/controller"
"github.com/echochat/backend/app/transcribe/dao"
"github.com/echochat/backend/app/transcribe/service"
"github.com/google/wire"
)
// TranscribeSet 转写模块 Wire Provider 集合
var TranscribeSet = wire.NewSet(
dao.NewTranscriptDAO,
dao.NewLLMConfigDAO,
service.NewOpenAICompatibleClient,
service.NewTranscribeService,
controller.NewTranscribeController,
)