package config import ( "github.com/zeromicro/go-zero/rest" ) // Config 客户端网关配置:无数据库,业务数据全部经反向代理转发到 WMS 后端 type Config struct { rest.RestConf // Upstream WMS 后端地址 Upstream string `yaml:",default=http://127.0.0.1:8890"` }