接入腾讯云日志服务

This commit is contained in:
2025-02-28 12:34:13 +08:00
parent f251df5ce3
commit 4973b8471e
6 changed files with 123 additions and 4 deletions

View File

@@ -18,9 +18,17 @@ type AliyunConfig struct {
SpeechRate int
}
type TencentCLS struct {
Endpoint string
SecretID string
SecretKey string
TopicID string
}
type Logger struct {
File *lumberjack.Logger
Level string
File *lumberjack.Logger
TencentCLS TencentCLS
Level string
}
type config struct {