Files
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"
2020-09-18 11:41:52 +08:00
"github.com/tal-tech/go-zero/zrpc"
2020-09-04 08:13:22 +08:00
)
2020-09-01 16:04:39 +08:00
type Config struct {
rest.RestConf
2020-09-18 11:41:52 +08:00
Transform zrpc.RpcClientConf
2020-09-01 16:04:39 +08:00
}