into

Helper function to initiate the project easly.
go get github.com/rakunlabs/into
Usage
func main() {
into.Init(run,
into.WithLogger(slog.Default()),
into.WithMsgf("myservice [%s]", "v0.1.0"),
)
}
func run(ctx context.Context) error {
return nil
}