微服务框架

lxg 555cd5b130 优化接口参数返回 2 years ago
.vscode 6d0daf3d0f 添加机器码 2 years ago
broker 20607b7e02 修复broker组件死锁问题 2 years ago
cmd ef8ce4cd6e 添加cli工具 2 years ago
gateway 555cd5b130 优化接口参数返回 2 years ago
helper 555cd5b130 优化接口参数返回 2 years ago
log c7dbd344d6 添加微服务架构 3 years ago
registry 9c0e32ae2b 优化服务注册 2 years ago
stats deb58152c1 add prometheus stats 2 years ago
sync deb58152c1 add prometheus stats 2 years ago
vendor 299929e8ee HTTP新增对serverHttp Hook操作 2 years ago
.gitignore deb58152c1 add prometheus stats 2 years ago
README.md 1ef67231d2 添加README 3 years ago
client.go f6e255690e 优化接口和错误输出 3 years ago
context.go 1b38da8010 remove depend 3 years ago
global.go e9be5a2951 处理微服务组件支持全局注册方式 2 years ago
go.mod 299929e8ee HTTP新增对serverHttp Hook操作 2 years ago
go.sum 299929e8ee HTTP新增对serverHttp Hook操作 2 years ago
micro.go 299929e8ee HTTP新增对serverHttp Hook操作 2 years ago
options.go 555cd5b130 优化接口参数返回 2 years ago
options_test.go 6d0daf3d0f 添加机器码 2 years ago
reporter.go 2b89837846 rename package 2 years ago
reporter_test.go 418ed96554 修复darwin获取机器码出问题 2 years ago
request.go af3a5e48d2 fix log bug 2 years ago
response.go 1b38da8010 remove depend 3 years ago
service.go 555cd5b130 优化接口参数返回 2 years ago

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())
}