Files
kitchensink/steps/step6/pkg/based32/log.go
David Vennik 1abeab533f Starting the server
First, just the WorkerPool structure and explaining the channels and waitgroup
2022-04-28 11:20:15 +03:00

9 lines
105 B
Go

package based32
import (
logg "log"
"os"
)
var log = logg.New(os.Stderr, "based32 ", logg.Llongfile)