Files
2026-03-31 22:12:06 +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
SnowflakeRpcConf zrpc.RpcClientConf
UserRpcConf zrpc.RpcClientConf
}