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

12 lines
168 B
Go
Raw Normal View History

2020-09-01 16:04:39 +08:00
package config
2020-09-04 08:13:22 +08:00
import (
"github.com/tal-tech/go-zero/rest"
"github.com/tal-tech/go-zero/rpcx"
)
2020-09-01 16:04:39 +08:00
type Config struct {
rest.RestConf
2020-09-04 08:13:22 +08:00
Transform rpcx.RpcClientConf
2020-09-01 16:04:39 +08:00
}