Skip to content

Commit

Permalink
renamed mod to matheus-rosa/go-workers2 (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus-rosa committed Nov 23, 2021
1 parent 69a88f7 commit c62dd64
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ vendor-upgrade:
# cmd
.PHONY: build-cmd
build-cmd:
go build -o ./target/gw2ctl github.com/digitalocean/go-workers2/cmd/gwctl
go build -o ./target/gw2ctl github.com/matheus-rosa/go-workers2/cmd/gwctl
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package main
import (
"fmt"

workers "github.com/digitalocean/go-workers2"
workers "github.com/matheus-rosa/go-workers2"
)

func myJob(message *workers.Msg) error {
Expand Down
2 changes: 1 addition & 1 deletion cmd/gwctl/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "github.com/digitalocean/go-workers2/cmd"
import "github.com/matheus-rosa/go-workers2/cmd"

func main() {
cmd.Execute()
Expand Down
2 changes: 1 addition & 1 deletion fetcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"
"time"

"github.com/digitalocean/go-workers2/storage"
"github.com/matheus-rosa/go-workers2/storage"
)

//Fetcher is an interface for managing work messages
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/digitalocean/go-workers2
module github.com/matheus-rosa/go-workers2

require (
github.com/bitly/go-simplejson v0.5.0
Expand Down
2 changes: 1 addition & 1 deletion options.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strings"
"time"

"github.com/digitalocean/go-workers2/storage"
"github.com/go-redis/redis/v8"
"github.com/matheus-rosa/go-workers2/storage"
)

// Options contains the set of configuration options for a manager and/or producer
Expand Down
2 changes: 1 addition & 1 deletion producer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"encoding/json"
"testing"

"github.com/digitalocean/go-workers2/storage"
"github.com/go-redis/redis/v8"
"github.com/matheus-rosa/go-workers2/storage"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion scheduled_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"testing"

"github.com/digitalocean/go-workers2/storage"
"github.com/go-redis/redis/v8"
"github.com/matheus-rosa/go-workers2/storage"
"github.com/stretchr/testify/assert"
)

Expand Down

0 comments on commit c62dd64

Please sign in to comment.