From af09de2e00a31b649ddc6acc33875a2e43305c48 Mon Sep 17 00:00:00 2001 From: xuthus5 Date: Sat, 24 Jun 2023 22:18:28 +0800 Subject: [PATCH] fix: go mod path --- go.mod | 2 +- go.sum | 1 - goast_test.go | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 69746d4..2a8cc59 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gitter.top/coco/goast +module gitter.top/common/goast go 1.18 diff --git a/go.sum b/go.sum index 231c467..2ec90f7 100644 --- a/go.sum +++ b/go.sum @@ -5,7 +5,6 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= -github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= diff --git a/goast_test.go b/goast_test.go index c4c10aa..657ade6 100644 --- a/goast_test.go +++ b/goast_test.go @@ -2,7 +2,7 @@ package goast_test import ( "fmt" - "gitter.top/coco/goast" + "gitter.top/common/goast" "testing" "github.com/stretchr/testify/assert"