Categorygithub.com/revett/common
module
0.0.0-20231119155546-d99e7a5e9208
Repository: https://github.com/revett/common.git
Documentation: pkg.go.dev

# README

common

Builds GoDoc Go Report Card License

Shared common code for my Go projects.

log

Create a custom rs/zerolog console logger:

package main

import (
	"context"

	commonlog "github.com/revett/common/log"
	"github.com/rs/zerolog/log"
)

func main() {
	log.Logger = commonlog.New()
	ctx := context.Background()

	// log.Info().Msg("...")
	// log.Fatal().Err(err).Send()
}

.golangci.yml

Update the golangci/golangci-lint within a repo:

curl -o .golangci.yml https://raw.githubusercontent.com/revett/dotfiles/main/.golangci.yml

# Packages

No description provided by the author
No description provided by the author
No description provided by the author