12 lines
157 B
Go
12 lines
157 B
Go
package config
|
|
|
|
import "github.com/zeromicro/go-zero/zrpc"
|
|
|
|
type Config struct {
|
|
zrpc.RpcServerConf
|
|
RedisHost string
|
|
Mysql struct {
|
|
Dsn string
|
|
}
|
|
}
|