From 7cf092f0a0ff99cc468d73bf47de3680097f307a Mon Sep 17 00:00:00 2001 From: Timo Furrer Date: Sat, 16 Oct 2021 12:01:00 +0200 Subject: [PATCH] Fix go mod path --- cmd/root.go | 2 +- go.mod | 2 +- main.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index a92c319..2253a2c 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -20,9 +20,9 @@ import ( "os" "strings" + docatl "github.com/docat-org/docat-cli/pkg" "github.com/spf13/cobra" "github.com/spf13/pflag" - docatl "github.com/timofurrer/docat-cli/pkg" "github.com/spf13/viper" ) diff --git a/go.mod b/go.mod index 1c3e59c..4a109e9 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/timofurrer/docat-cli +module github.com/docat-org/docat-cli go 1.17 diff --git a/main.go b/main.go index f5d88cc..eed6b84 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,7 @@ limitations under the License. */ package main -import "github.com/timofurrer/docat-cli/cmd" +import "github.com/docat-org/docat-cli/cmd" func main() { cmd.Execute()