34 lines
563 B
Go
34 lines
563 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
"github.com/zeromicro/go-zero/core/stores/cache"
|
||
|
"github.com/zeromicro/go-zero/core/stores/redis"
|
||
|
"github.com/zeromicro/go-zero/zrpc"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
zrpc.RpcServerConf
|
||
|
// 加上 DB 結構體
|
||
|
DB struct {
|
||
|
DsnString string
|
||
|
}
|
||
|
// 快取
|
||
|
Cache cache.CacheConf
|
||
|
// 密碼加密層數
|
||
|
Bcrypt struct {
|
||
|
Cost int
|
||
|
}
|
||
|
// Redis Cluster
|
||
|
RedisCluster redis.RedisConf
|
||
|
|
||
|
Mongo struct {
|
||
|
Schema string
|
||
|
User string
|
||
|
Password string
|
||
|
Host string
|
||
|
Port string
|
||
|
Database string
|
||
|
Collection string
|
||
|
}
|
||
|
}
|