diff --git a/go/cli/commands/build.go b/go/kfn/commands/build.go similarity index 100% rename from go/cli/commands/build.go rename to go/kfn/commands/build.go diff --git a/go/cli/commands/build_test.go b/go/kfn/commands/build_test.go similarity index 100% rename from go/cli/commands/build_test.go rename to go/kfn/commands/build_test.go diff --git a/go/cli/commands/embed/Dockerfile b/go/kfn/commands/embed/Dockerfile similarity index 100% rename from go/cli/commands/embed/Dockerfile rename to go/kfn/commands/embed/Dockerfile diff --git a/go/cli/commands/init.go b/go/kfn/commands/init.go similarity index 100% rename from go/cli/commands/init.go rename to go/kfn/commands/init.go diff --git a/go/cli/go.mod b/go/kfn/go.mod similarity index 89% rename from go/cli/go.mod rename to go/kfn/go.mod index 39d7a90a2..abfe6337b 100644 --- a/go/cli/go.mod +++ b/go/kfn/go.mod @@ -1,4 +1,4 @@ -module github.com/GoogleContainerTools/kpt-functions-sdk/cli +module github.com/GoogleContainerTools/kpt-functions-sdk/go/kfn go 1.19 diff --git a/go/cli/go.sum b/go/kfn/go.sum similarity index 100% rename from go/cli/go.sum rename to go/kfn/go.sum diff --git a/go/cli/main.go b/go/kfn/main.go similarity index 93% rename from go/cli/main.go rename to go/kfn/main.go index 6fd4dc53c..0aa21c6d7 100644 --- a/go/cli/main.go +++ b/go/kfn/main.go @@ -18,7 +18,7 @@ import ( "context" "os" - "github.com/GoogleContainerTools/kpt-functions-sdk/cli/commands" + "github.com/GoogleContainerTools/kpt-functions-sdk/go/kfn/commands" "github.com/spf13/cobra" )