Files
juwan-backend/app/user_verifications/rpc/internal/config/config.go
T
2026-02-27 19:17:01 +08:00

18 lines
314 B
Go

package config
import (
"github.com/zeromicro/go-zero/core/stores/cache"
"github.com/zeromicro/go-zero/zrpc"
)
type Config struct {
zrpc.RpcServerConf
DB struct {
Master string
Slave string
}
CacheConf cache.CacheConf
UserVeriRpcConf zrpc.RpcClientConf
SnowflakeRpcConf zrpc.RpcClientConf
}