From 4787511f0bf5a27f1e08d35aba0a583039830498 Mon Sep 17 00:00:00 2001 From: 6543 <6543@noreply.gitea.io> Date: Mon, 20 Jul 2020 13:29:15 +0000 Subject: [PATCH] Correct Import Paths (#6) fix import path after repo move Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/gitea-vet/pulls/6 --- go.mod | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 241ed5c..ed0987c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gitea.com/jolheiser/gitea-vet +module code.gitea.io/gitea-vet go 1.14 diff --git a/main.go b/main.go index 089f89c..4894055 100644 --- a/main.go +++ b/main.go @@ -5,7 +5,7 @@ package main import ( - "gitea.com/jolheiser/gitea-vet/checks" + "code.gitea.io/gitea-vet/checks" "golang.org/x/tools/go/analysis/unitchecker" )