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