You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
409 B
Smarty
23 lines
409 B
Smarty
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),
|
|
}
|
|
}
|