update example doc

This commit is contained in:
kevin
2020-09-04 08:13:22 +08:00
parent b4aa89fc25
commit c0d0e00803
8 changed files with 67 additions and 21 deletions

View File

@@ -1,11 +1,20 @@
package svc
import "shorturl/api/internal/config"
import (
"shorturl/api/internal/config"
"shorturl/rpc/transform/transformer"
"github.com/tal-tech/go-zero/rpcx"
)
type ServiceContext struct {
Config config.Config
Config config.Config
Transformer transformer.Transformer
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{Config: c}
return &ServiceContext{
Config: c,
Transformer: transformer.NewTransformer(rpcx.MustNewClient(c.Transform)),
}
}