Skip to content
/ bone Public

🦴 Non-intrusive Go micro-service framework to combine modules organically, base on go-kit.

License

Notifications You must be signed in to change notification settings

mingslife/bone

Repository files navigation

Bone

Go Go Report Card MIT License codecov GoDoc

🦴 Non-intrusive Go micro-service framework to combine modules organically, base on go-kit.

Installation

$ go get -u github.com/mingslife/bone

Documentation

Go Packages

Quick start

package main

import "github.com/mingslife/bone"

func main() {
	options := bone.DefaultApplicationOptions()
	application := bone.NewApplication(options)
	// application.Use(...components)
	application.Run() // Listen on 127.0.0.1:8080
}

Example

bone-example

License

© 2022 Ming

Released under the MIT License