2025-01-24 18:36:46 +08:00

29 lines
528 B
Go

package config
import (
"github.com/zeromicro/go-zero/core/stores/cache"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
DB struct {
DataSource string
}
Cache cache.CacheConf
Auth struct { // JWT 认证需要的密钥和过期时间配置
AccessSecret string
AccessExpire int64
}
DWCache struct {
Host string // 缓存服务器地址
Password string // 缓存服务器密码
IdleTimeout int
} // 抖音微信缓存配置
EcpmLogPath string // 日志文件路径
}