// Code scaffolded by goctl. Safe to edit. // goctl 1.9.2 package svc import ( "juwan-backend/app/game/api/internal/config" "juwan-backend/app/game/rpc/gamepublic" "github.com/zeromicro/go-zero/zrpc" ) type ServiceContext struct { Config config.Config GameRpc gamepublic.GamePublic } func NewServiceContext(c config.Config) *ServiceContext { return &ServiceContext{ Config: c, GameRpc: gamepublic.NewGamePublic(zrpc.MustNewClient(c.GameRpcConf)), } }