go-zero/example/bookstore/api/internal/config/config.go

13 lines
190 B
Go
Raw Normal View History

2020-09-03 23:26:04 +08:00
package config
import (
"github.com/tal-tech/go-zero/rest"
2020-09-18 11:41:52 +08:00
"github.com/tal-tech/go-zero/zrpc"
2020-09-03 23:26:04 +08:00
)
type Config struct {
rest.RestConf
2020-09-18 11:41:52 +08:00
Add zrpc.RpcClientConf
Check zrpc.RpcClientConf
}