Merge pull request #4 from k8sgpt-ai/chore/renaming

chore: change module repository references
This commit is contained in:
Alex Jones
2023-03-22 06:52:51 +00:00
committed by GitHub
5 changed files with 10 additions and 10 deletions

View File

@@ -7,10 +7,10 @@ import (
"context"
"os"
"github.com/cloud-native-skunkworks/k8sgpt/pkg/analyzer"
"github.com/cloud-native-skunkworks/k8sgpt/pkg/client"
"github.com/cloud-native-skunkworks/k8sgpt/pkg/openai"
"github.com/fatih/color"
"github.com/k8sgpt-ai/k8sgpt/pkg/analyzer"
"github.com/k8sgpt-ai/k8sgpt/pkg/client"
"github.com/k8sgpt-ai/k8sgpt/pkg/openai"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)

View File

@@ -6,10 +6,10 @@ package cmd
import (
"os"
"github.com/cloud-native-skunkworks/k8sgpt/cmd/auth"
"github.com/cloud-native-skunkworks/k8sgpt/cmd/find"
"github.com/cloud-native-skunkworks/k8sgpt/pkg/client"
"github.com/fatih/color"
"github.com/k8sgpt-ai/k8sgpt/cmd/auth"
"github.com/k8sgpt-ai/k8sgpt/cmd/find"
"github.com/k8sgpt-ai/k8sgpt/pkg/client"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)

2
go.mod
View File

@@ -1,4 +1,4 @@
module github.com/cloud-native-skunkworks/k8sgpt
module github.com/k8sgpt-ai/k8sgpt
go 1.20

View File

@@ -3,7 +3,7 @@ Copyright © 2023 NAME HERE <EMAIL ADDRESS>
*/
package main
import "github.com/cloud-native-skunkworks/k8sgpt/cmd"
import "github.com/k8sgpt-ai/k8sgpt/cmd"
func main() {
cmd.Execute()

View File

@@ -8,9 +8,9 @@ import (
"time"
"github.com/briandowns/spinner"
"github.com/cloud-native-skunkworks/k8sgpt/pkg/client"
ai "github.com/cloud-native-skunkworks/k8sgpt/pkg/openai"
"github.com/fatih/color"
"github.com/k8sgpt-ai/k8sgpt/pkg/client"
ai "github.com/k8sgpt-ai/k8sgpt/pkg/openai"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)