package
3.0.0+incompatible
Repository: https://github.com/donutloop/toolkit.git
Documentation: pkg.go.dev

# README

Usage

Runner executes the provided functions in concurrent and collects any errors they return.

Example

package main 

import (
	"github.com/donutloop/toolkit/concurrent"
	"log"
)

func main() {
	concurrent.Run(
		func() error {
	        // do things
		},
		func() error {
			// do things
			return nil
		},
	)
}