Skip to content

Commit

Permalink
Rename to kccli
Browse files Browse the repository at this point in the history
  • Loading branch information
darklore committed Nov 20, 2021
1 parent 8dab354 commit e300caf
Show file tree
Hide file tree
Showing 22 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion main.go → cmd/kccli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/darklore/kafka-connect-cli/cmd"
"github.com/darklore/kafka-connect-cli/pkg/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/connector/cmd.go → pkg/cmd/connector/cmd.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package connector

import (
"github.com/darklore/kafka-connect-cli/cmd/connector/tasks"
"github.com/darklore/kafka-connect-cli/pkg/cmd/connector/tasks"
"github.com/darklore/kafka-connect-cli/pkg/kafka/connect"
"github.com/spf13/cobra"
)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions cmd/root.go → pkg/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import (
"log"
"runtime/debug"

"github.com/darklore/kafka-connect-cli/cmd/connector"
"github.com/darklore/kafka-connect-cli/cmd/plugins"
"github.com/darklore/kafka-connect-cli/pkg/cmd/connector"
"github.com/darklore/kafka-connect-cli/pkg/cmd/plugins"
"github.com/spf13/cobra"
)

func NewCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "kafka-connect-cli",
Use: "kccli",
Short: "Command line tool arounc kakfa connect REST interface",
}

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit e300caf

Please sign in to comment.