This commit is contained in:
2024-06-28 11:50:29 +08:00
commit 6dd80a46ca
13 changed files with 1364 additions and 0 deletions

18
config/config.go Normal file
View File

@@ -0,0 +1,18 @@
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
}