From 2cb62cf540172b3c1d7aea7a6df96a230d5d8e40 Mon Sep 17 00:00:00 2001 From: Ruslan Isamukhametov Date: Sun, 13 Aug 2023 20:26:15 +0300 Subject: [PATCH] repository transfer changes (#19) --- README.md | 8 ++++---- go.mod | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 421b290..a88aad8 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # go-wiremock -[![Actions Status](https://github.com/walkerus/go-wiremock/workflows/build/badge.svg)](https://github.com/walkerus/go-wiremock/actions?query=workflow%3Abuild) -[![Go Report Card](https://goreportcard.com/badge/github.com/walkerus/go-wiremock)](https://goreportcard.com/report/github.com/walkerus/go-wiremock) +[![Actions Status](https://github.com/wiremock/go-wiremock/workflows/build/badge.svg)](https://github.com/wiremock/go-wiremock/actions?query=workflow%3Abuild) +[![Go Report Card](https://goreportcard.com/badge/github.com/wiremock/go-wiremock)](https://goreportcard.com/report/github.com/wiremock/go-wiremock) The simple package to stub HTTP resource using [WireMock admin](http://wiremock.org/docs/api/) ## Documentation -[![GoDoc](https://godoc.org/github.com/walkerus/go-wiremock?status.svg)](http://godoc.org/github.com/walkerus/go-wiremock) +[![GoDoc](https://godoc.org/github.com/wiremock/go-wiremock?status.svg)](http://godoc.org/github.com/wiremock/go-wiremock) ## Usage @@ -22,7 +22,7 @@ import ( "net/http" "testing" - "github.com/walkerus/go-wiremock" + "github.com/wiremock/go-wiremock" ) func TestSome(t *testing.T) { diff --git a/go.mod b/go.mod index 42bbc76..13d2029 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/walkerus/go-wiremock +module github.com/wiremock/go-wiremock go 1.20