123456789101112 |
- package root
- import (
- "baize-demo/project/gateway/config"
- "git.sxidc.com/go-framework/baize/convenient/domain_gateway/configuration"
- "git.sxidc.com/go-framework/baize/framework/gateway"
- )
- func configurationGateway(gw *gateway.Gateway) {
- configuration.RegisterService("example", config.GetConfig().ServicesConfig.ExampleBaseUrl)
- configuration.BuildGateway(gw)
- }
|