12345678910111213141516171819202122 |
- package svc
- import (
- "github.com/zeromicro/go-zero/zrpc"
- "greet/api/internal/config"
- "greet/rpc/greet"
- )
- type ServiceContext struct {
- Config config.Config
- GreetRpc greet.Greet
- }
- func NewServiceContext(c config.Config) *ServiceContext {
- client := zrpc.MustNewClient(zrpc.RpcClientConf{
- Target: "127.0.0.1:8080",
- })
- return &ServiceContext{
- Config: c,
- GreetRpc: greet.NewGreet(client),
- }
- }
|