service/config/config.go

19 lines
498 B
Go
Raw Normal View History

2024-06-28 11:50:29 +08:00
package config
import (
"context"
)
var RpcConfig = &Config{}
type Config struct {
RegistryServer []string
BeforeHandel func(ctx context.Context, baseName, serviceName, serviceMethod string, args interface{}, reply interface{}) (context.Context, error)
AfterHandel func(ctx context.Context, baseName, serviceName, serviceMethod string, args interface{}, reply interface{}, err error) error
}
// InitConfig @Title 初始化配置
func InitConfig(config Config) {
RpcConfig = &config
}