๐ bo, BootKit for easily bootstrapping multi-goroutine applications, CLIs, can be used as drop-in replacement of uber/fx
- Forget about
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
- Forget about
context.WithCancel(context.Background())
- Forget about error passing through multiple layers
bo.New()
bo.Add(YourService())
bo.Add(AnotherService())
bo.Start()
That's it!
go get github.com/nekomeowww/bo
package main
import (
"context"
"net/http"
"time"
"github.com/labstack/echo/v4"
"github.com/nekomeowww/bo"
)
func NewServer1() *http.Server {
e := echo.New()
e.GET("/", func(c echo.Context) error {
return c.String(http.StatusOK, "Hello, World!")
})
return &http.Server{
Addr: ":8080",
Handler: e,
ReadTimeout: time.Second * 10,
}
}
func NewServer2() *http.Server {
e := echo.New()
e.GET("/", func(c echo.Context) error {
return c.JSON(http.StatusOK, map[string]interface{}{
"message": "Hello, World!",
})
})
return &http.Server{
Addr: ":8081",
Handler: e,
ReadTimeout: time.Second * 10,
}
}
func main() {
app := bo.New()
app.Add(func(ctx context.Context, lifeCycle bo.LifeCycle) error {
srv := NewServer1()
lifeCycle.Append(bo.Hook{
OnStart: func(ctx context.Context) error {
return srv.ListenAndServe()
},
OnStop: func(ctx context.Context) error {
return srv.Shutdown(ctx)
},
})
return nil
})
app.Add(func(ctx context.Context, lifeCycle bo.LifeCycle) error {
srv := NewServer2()
lifeCycle.Append(bo.Hook{
OnStart: func(ctx context.Context) error {
return srv.ListenAndServe()
},
OnStop: func(ctx context.Context) error {
return srv.Shutdown(ctx)
},
})
return nil
})
app.Start()
}
GoDoc: https://godoc.org/github.com/nekomeowww/bo
- nekomeowww/xo: Mega utility & helper & extension library for Go
- nekomeowww/fo: Functional programming utility library for Go
- nekomeowww/tgo: Telegram bot framework for Go
- nekomeowww/wso: WebSocket utility library for Go
- Kollama - Ollama Operator: Kubernetes Operator for managing Ollama instances across multiple clusters
- lingticio/llmg: LLM Gateway with gRPC, WebSocket, and RESTful API adapters included.
- knoway-dev/knoway: Kubernetes-first LLM Gateway