From a5d63c35dce403b48dfbe0b8faedac66ba0e5c0e Mon Sep 17 00:00:00 2001 From: Slavomir Date: Sat, 4 Sep 2021 13:57:04 +0200 Subject: [PATCH] github.com/dfuse-io/binary -> github.com/gagliardetto/binary --- README.md | 2 +- go.mod | 2 +- logging.go | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 56b79e2..b10bb20 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # dfuse binary -[![reference](https://img.shields.io/badge/godoc-reference-5272B4.svg?style=flat-square)](https://pkg.go.dev/github.com/dfuse-io/binary) +[![reference](https://img.shields.io/badge/godoc-reference-5272B4.svg?style=flat-square)](https://pkg.go.dev/github.com/gagliardetto/binary) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) Binary Encoder and Decoder library diff --git a/go.mod b/go.mod index 4cdb26b..1c81014 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/dfuse-io/binary +module github.com/gagliardetto/binary go 1.14 diff --git a/logging.go b/logging.go index b568416..d0909ba 100644 --- a/logging.go +++ b/logging.go @@ -10,10 +10,10 @@ import ( var zlog = zap.NewNop() func init() { - logging.Register("github.com/dfuse-io/binary", &zlog) + logging.Register("github.com/gagliardetto/binary", &zlog) } -var traceEnabled = logging.IsTraceEnabled("binary", "github.com/dfuse-io/binary") +var traceEnabled = logging.IsTraceEnabled("binary", "github.com/gagliardetto/binary") type logStringerFunc func() string