ark-member/internal/config/config.go

20 lines
270 B
Go
Raw Normal View History

2024-07-21 15:57:56 +00:00
package config
import (
"github.com/zeromicro/go-zero/core/stores/cache"
"github.com/zeromicro/go-zero/zrpc"
)
type Config struct {
zrpc.RpcServerConf
// 加上DB結構體
DB struct {
DsnString string
}
Cache cache.CacheConf
Bcrypt struct {
Cost int
}
}