From 09f4cfc59a0f20bc92741489224c7c0e1551d25d Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 25 Aug 2022 14:14:07 +0200 Subject: [PATCH] Migration: From github.com to git.webz.asia --- README.md | 8 ++++---- examples/example-1/main.go | 2 +- examples/example-2/main.go | 2 +- examples/example-3/main.go | 2 +- examples/example-4/main.go | 2 +- fields_test.go | 2 +- go.mod | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 78d172b..e4d9cf5 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Go Report Card](https://goreportcard.com/badge/github.com/go-convert/fields)](https://goreportcard.com/report/github.com/go-convert/fields) -[![Actions Status](https://github.com/go-convert/fields/workflows/Go/badge.svg)](https://github.com/go-convert/fields/actions) +[![Go Report Card](https://goreportcard.com/badge/git.webz.asia/go-convert/fields)](https://goreportcard.com/report/git.webz.asia/go-convert/fields) +[![Actions Status](https://git.webz.asia/go-convert/fields/workflows/Go/badge.svg)](https://git.webz.asia/go-convert/fields/actions) [![Build Status](https://travis-ci.org/go-convert/fields.svg?branch=master)](https://travis-ci.org/go-convert/fields) [![codecov](https://codecov.io/gh/go-convert/fields/branch/master/graph/badge.svg)](https://codecov.io/gh/go-convert/fields) @@ -15,7 +15,7 @@ import ( "log" "encoding/json" - "github.com/go-convert/fields" + "git.webz.asia/go-convert/fields" ) type FromStruct struct { @@ -80,7 +80,7 @@ import ( "log" "encoding/json" - "github.com/go-convert/fields" + "git.webz.asia/go-convert/fields" ) type FromStructCustom struct { diff --git a/examples/example-1/main.go b/examples/example-1/main.go index 3fe3dd2..433f17c 100644 --- a/examples/example-1/main.go +++ b/examples/example-1/main.go @@ -25,7 +25,7 @@ import ( "encoding/json" "log" - "github.com/go-convert/fields" + "git.webz.asia/go-convert/fields" ) type fromStruct struct { diff --git a/examples/example-2/main.go b/examples/example-2/main.go index 7b6f3a4..abca810 100644 --- a/examples/example-2/main.go +++ b/examples/example-2/main.go @@ -25,7 +25,7 @@ import ( "encoding/json" "log" - "github.com/go-convert/fields" + "git.webz.asia/go-convert/fields" ) type fromStructCustom struct { diff --git a/examples/example-3/main.go b/examples/example-3/main.go index 352fd5a..9651cf9 100644 --- a/examples/example-3/main.go +++ b/examples/example-3/main.go @@ -25,7 +25,7 @@ import ( "encoding/json" "log" - "github.com/go-convert/fields" + "git.webz.asia/go-convert/fields" ) type FromStructBase struct { diff --git a/examples/example-4/main.go b/examples/example-4/main.go index 98cf77c..08934a8 100644 --- a/examples/example-4/main.go +++ b/examples/example-4/main.go @@ -25,7 +25,7 @@ import ( "encoding/json" "log" - "github.com/go-convert/fields" + "git.webz.asia/go-convert/fields" "github.com/satori/go.uuid" ) diff --git a/fields_test.go b/fields_test.go index 90989c8..c5a4a3c 100644 --- a/fields_test.go +++ b/fields_test.go @@ -27,7 +27,7 @@ import ( "github.com/satori/go.uuid" "github.com/stretchr/testify/assert" - "github.com/go-convert/fields" + "git.webz.asia/go-convert/fields" ) type FromStruct struct { diff --git a/go.mod b/go.mod index 0f8fa46..e572b99 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/go-convert/fields +module git.webz.asia/go-convert/fields go 1.13