微服务框架

fancl 8bba61a314 修改数据上报接口 hace 2 años
.vscode 6d0daf3d0f 添加机器码 hace 2 años
broker 9e30db74c4 优化服务接口 hace 2 años
cmd 8bba61a314 修改数据上报接口 hace 2 años
gateway 8bba61a314 修改数据上报接口 hace 2 años
helper 8bba61a314 修改数据上报接口 hace 2 años
log 9e30db74c4 优化服务接口 hace 2 años
registry ae2b2c050a 修复select获取到的服务可能不可用的情况 hace 2 años
stats deb58152c1 add prometheus stats hace 3 años
sync deb58152c1 add prometheus stats hace 3 años
vendor 299929e8ee HTTP新增对serverHttp Hook操作 hace 2 años
.gitignore 8bba61a314 修改数据上报接口 hace 2 años
README.md 1ef67231d2 添加README hace 3 años
client.go 08465bb774 rpc请求服务端添加重试处理 hace 2 años
context.go 1b38da8010 remove depend hace 3 años
global.go e9be5a2951 处理微服务组件支持全局注册方式 hace 2 años
go.mod 299929e8ee HTTP新增对serverHttp Hook操作 hace 2 años
go.sum 299929e8ee HTTP新增对serverHttp Hook操作 hace 2 años
micro.go fb25a01734 修复组件BUG hace 2 años
options.go 8bba61a314 修改数据上报接口 hace 2 años
options_test.go 6d0daf3d0f 添加机器码 hace 2 años
reporter.go 8bba61a314 修改数据上报接口 hace 2 años
reporter_test.go 418ed96554 修复darwin获取机器码出问题 hace 2 años
request.go af3a5e48d2 fix log bug hace 2 años
response.go 1b38da8010 remove depend hace 3 años
service.go 8bba61a314 修改数据上报接口 hace 2 años

README.md

提供基本的服务框架

使用示例:

import (
	"git.nspix.com/golang/micro"
	"git.nspix.com/golang/micro/gateway"
	"git.nspix.com/golang/micro/log"
)

func main() {
	svr := micro.New(micro.WithName("test", "0.1.01"))

	svr.Handle("math.add", func(ctx gateway.Context) (err error) {
		return ctx.Success(100)
	})

	log.Debug(svr.Run())
}