Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"context"

"github.com/gomodule/redigo/redis"
"github.com/sbermarket-tech/work"
"github.com/kuper-tech/work"
)

// Make a redis pool
Expand Down Expand Up @@ -64,7 +64,7 @@ import (
"os/signal"

"github.com/gomodule/redigo/redis"
"github.com/sbermarket-tech/work"
"github.com/kuper-tech/work"
)

// Make a redis pool
Expand Down
2 changes: 1 addition & 1 deletion benches/bench_work/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"time"

"github.com/gocraft/health"
"github.com/sbermarket-tech/work"
"github.com/gomodule/redigo/redis"
"github.com/kuper-tech/work"
)

var namespace = "bench_test"
Expand Down
6 changes: 3 additions & 3 deletions benches/go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
module github.com/sbermarket-tech/work/benches
module github.com/kuper-tech/work/benches

go 1.21

replace github.com/sbermarket-tech/work => ../
replace github.com/kuper-tech/work => ../

require (
github.com/albrow/jobs v0.4.2
github.com/benmanns/goworker v0.1.4-0.20200828204759-d28a4f34a4d1
github.com/gocraft/health v0.0.0-20170925182251-8675af27fef0
github.com/gomodule/redigo v1.8.8
github.com/jrallison/go-workers v0.0.0-20180112190529-dbf81d0b75bb
github.com/sbermarket-tech/work v0.0.0-00010101000000-000000000000
github.com/kuper-tech/work v0.0.0-00010101000000-000000000000
)

require (
Expand Down
2 changes: 1 addition & 1 deletion cmd/workenqueue/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"os"
"time"

"github.com/sbermarket-tech/work"
"github.com/gomodule/redigo/redis"
"github.com/kuper-tech/work"
)

var redisHostPort = flag.String("redis", ":6379", "redis hostport")
Expand Down
2 changes: 1 addition & 1 deletion cmd/workfakedata/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"math/rand"
"time"

"github.com/sbermarket-tech/work"
"github.com/gomodule/redigo/redis"
"github.com/kuper-tech/work"
)

var redisHostPort = flag.String("redis", ":6379", "redis hostport")
Expand Down
2 changes: 1 addition & 1 deletion cmd/workwebui/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"time"

"github.com/gomodule/redigo/redis"
"github.com/sbermarket-tech/work/webui"
"github.com/kuper-tech/work/webui"
)

var (
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/work
module github.com/kuper-tech/work

go 1.21

Expand Down
4 changes: 2 additions & 2 deletions webui/webui.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (

"github.com/braintree/manners"
"github.com/gocraft/web"
"github.com/sbermarket-tech/work"
"github.com/sbermarket-tech/work/webui/internal/assets"
"github.com/kuper-tech/work"
"github.com/kuper-tech/work/webui/internal/assets"
)

// Server implements an HTTP server which exposes a JSON API to view and manage gocraft/work items.
Expand Down
2 changes: 1 addition & 1 deletion webui/webui_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"testing"
"time"

"github.com/sbermarket-tech/work"
"github.com/gomodule/redigo/redis"
"github.com/kuper-tech/work"
"github.com/stretchr/testify/assert"
)

Expand Down