Skip to content

Commit

Permalink
Merge pull request #16 from Kuper-Tech/migrate-to-kuper
Browse files Browse the repository at this point in the history
Migrate to kuper-tech
  • Loading branch information
teatou authored Aug 1, 2024
2 parents efce9c9 + 88203b7 commit 0fcf166
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Kafka producer and consumer tool in protobuf format.

## Install
```sh
go install github.com/SberMarket-Tech/protokaf@latest
go install github.com/kuper-tech/protokaf@latest
```

## Configuration
Expand Down
4 changes: 2 additions & 2 deletions cmd/cmd_consume.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import (
"strconv"
"sync"

"github.com/SberMarket-Tech/protokaf/internal/kafka"
"github.com/SberMarket-Tech/protokaf/internal/utils/dump"
"github.com/Shopify/sarama"
"github.com/jhump/protoreflect/desc"
"github.com/jhump/protoreflect/dynamic"
"github.com/kuper-tech/protokaf/internal/kafka"
"github.com/kuper-tech/protokaf/internal/utils/dump"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
10 changes: 5 additions & 5 deletions cmd/cmd_produce.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ import (
"text/template"
"time"

"github.com/SberMarket-Tech/protokaf/internal/calldata"
"github.com/SberMarket-Tech/protokaf/internal/kafka"
"github.com/SberMarket-Tech/protokaf/internal/proto"
"github.com/SberMarket-Tech/protokaf/internal/tracing"
"github.com/SberMarket-Tech/protokaf/internal/utils/dump"
"github.com/Shopify/sarama"
"github.com/jhump/protoreflect/desc"
"github.com/kuper-tech/protokaf/internal/calldata"
"github.com/kuper-tech/protokaf/internal/kafka"
"github.com/kuper-tech/protokaf/internal/proto"
"github.com/kuper-tech/protokaf/internal/tracing"
"github.com/kuper-tech/protokaf/internal/utils/dump"
"github.com/opentracing/opentracing-go"
"github.com/opentracing/opentracing-go/ext"
"github.com/spf13/cobra"
Expand Down
2 changes: 1 addition & 1 deletion cmd/cmd_root.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"os"

"github.com/SberMarket-Tech/protokaf/internal/kafka"
"github.com/Shopify/sarama"
"github.com/kuper-tech/protokaf/internal/kafka"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"go.uber.org/zap"
Expand Down
2 changes: 1 addition & 1 deletion cmd/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"strings"

"github.com/SberMarket-Tech/protokaf/internal/proto"
"github.com/jhump/protoreflect/desc"
"github.com/kuper-tech/protokaf/internal/proto"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/SberMarket-Tech/protokaf/internal/kafka"
"github.com/kuper-tech/protokaf/internal/kafka"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/SberMarket-Tech/protokaf
module github.com/kuper-tech/protokaf

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "github.com/SberMarket-Tech/protokaf/cmd"
import "github.com/kuper-tech/protokaf/cmd"

func main() {
cmd.Execute()
Expand Down

0 comments on commit 0fcf166

Please sign in to comment.