39 lines
626 B
Go
Executable File
39 lines
626 B
Go
Executable File
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
|
|
}
|
|
|
|
GoogleAuth struct {
|
|
ClientID string
|
|
VerifyURL string
|
|
}
|
|
}
|