Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.29 KB

README.md

File metadata and controls

44 lines (29 loc) · 1.29 KB

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