From 4aed3de06dacbba8dc604e19fc816b3f161e1992 Mon Sep 17 00:00:00 2001 From: agungdwiprasetyo Date: Fri, 26 Nov 2021 20:59:12 +0700 Subject: [PATCH] update package name --- README.md | 8 ++++---- glide.yaml | 4 ++-- go.mod | 4 +++- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index aa333836..54a3b626 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -[![GoDoc](https://godoc.org/github.com/xeipuuv/gojsonschema?status.svg)](https://godoc.org/github.com/xeipuuv/gojsonschema) +[![GoDoc](https://godoc.org/github.com/golangid/gojsonschema?status.svg)](https://godoc.org/github.com/golangid/gojsonschema) [![Build Status](https://travis-ci.org/xeipuuv/gojsonschema.svg)](https://travis-ci.org/xeipuuv/gojsonschema) -[![Go Report Card](https://goreportcard.com/badge/github.com/xeipuuv/gojsonschema)](https://goreportcard.com/report/github.com/xeipuuv/gojsonschema) +[![Go Report Card](https://goreportcard.com/badge/github.com/golangid/gojsonschema)](https://goreportcard.com/report/github.com/golangid/gojsonschema) # gojsonschema @@ -17,7 +17,7 @@ References : ## Installation ``` -go get github.com/xeipuuv/gojsonschema +go get github.com/golangid/gojsonschema ``` Dependencies : @@ -35,7 +35,7 @@ package main import ( "fmt" - "github.com/xeipuuv/gojsonschema" + "github.com/golangid/gojsonschema" ) func main() { diff --git a/glide.yaml b/glide.yaml index ab6fb867..0ce4711b 100644 --- a/glide.yaml +++ b/glide.yaml @@ -1,7 +1,7 @@ -package: github.com/xeipuuv/gojsonschema +package: github.com/golangid/gojsonschema license: Apache 2.0 import: -- package: github.com/xeipuuv/gojsonschema +- package: github.com/golangid/gojsonschema - package: github.com/xeipuuv/gojsonpointer diff --git a/go.mod b/go.mod index b709d7fc..e87873e8 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,6 @@ -module github.com/xeipuuv/gojsonschema +module github.com/golangid/gojsonschema + +go 1.16 require ( github.com/stretchr/testify v1.3.0