From 4a01ebf23c42c659a064c2d9359d2c01131f0313 Mon Sep 17 00:00:00 2001 From: Sergey Solodyagin Date: Mon, 15 Jan 2024 16:13:04 +0300 Subject: [PATCH] chore: change module name after fork --- README.md | 5 ++--- go.mod | 2 +- pgservicefile_test.go | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2fc7e01..8131e86 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ -[![Go Reference](https://pkg.go.dev/badge/github.com/jackc/pgservicefile.svg)](https://pkg.go.dev/github.com/jackc/pgservicefile) -[![Build Status](https://github.com/jackc/pgservicefile/actions/workflows/ci.yml/badge.svg)](https://github.com/jackc/pgservicefile/actions/workflows/ci.yml) - +[![Go Reference](https://pkg.go.dev/badge/github.com/andoma-go/pgservicefile.svg)](https://pkg.go.dev/github.com/andoma-go/pgservicefile) +[![Build Status](https://github.com/andoma-go/pgservicefile/actions/workflows/ci.yml/badge.svg)](https://github.com/andoma-go/pgservicefile/actions/workflows/ci.yml) # pgservicefile diff --git a/go.mod b/go.mod index d8ec281..9cd5690 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/jackc/pgservicefile +module github.com/andoma-go/pgservicefile go 1.14 diff --git a/pgservicefile_test.go b/pgservicefile_test.go index e5cc3ee..74bbaad 100644 --- a/pgservicefile_test.go +++ b/pgservicefile_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/jackc/pgservicefile" + "github.com/andoma-go/pgservicefile" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" )