12 lines
157 B
Go
Raw Permalink Normal View History

2025-02-05 18:45:49 +08:00
package config
import "github.com/zeromicro/go-zero/zrpc"
type Config struct {
zrpc.RpcServerConf
2025-02-07 17:01:48 +08:00
RedisHost string
Mysql struct {
Dsn string
}
2025-02-05 18:45:49 +08:00
}