go-zero/example/graceful/dns/api/config/config.go

12 lines
162 B
Go
Raw Normal View History

2020-07-26 17:09:05 +08:00
package config
import (
2020-08-08 16:40:10 +08:00
"github.com/tal-tech/go-zero/rest"
2020-09-18 11:41:52 +08:00
"github.com/tal-tech/go-zero/zrpc"
2020-07-26 17:09:05 +08:00
)
type Config struct {
2020-07-31 11:45:16 +08:00
rest.RestConf
2020-09-18 11:41:52 +08:00
Rpc zrpc.RpcClientConf
2020-07-26 17:09:05 +08:00
}