Skip to content

Commit d7bd2fa

Browse files
committed
change github repository
1 parent bacb2b2 commit d7bd2fa

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/gdharley/flowable-external-client-golang
1+
module github.com/flowable/flowable-external-client-golang
22

33
go 1.23.4

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package main
33
import (
44
"time"
55

6-
"github.com/gdharley/flowable-external-client-golang/flowable"
7-
"github.com/gdharley/flowable-external-client-golang/worker"
6+
"github.com/flowable/flowable-external-client-golang/flowable"
7+
"github.com/flowable/flowable-external-client-golang/worker"
88
)
99

1010
// Sample main function to start the Flowable external worker subscription

test/external_worker_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package worker_test
33
import (
44
"testing"
55

6-
"github.com/gdharley/flowable-external-client-golang/flowable"
7-
"github.com/gdharley/flowable-external-client-golang/worker"
6+
"github.com/flowable/flowable-external-client-golang/flowable"
7+
"github.com/flowable/flowable-external-client-golang/worker"
88
)
99

1010
func TestExternalWorkerSuccess(t *testing.T) {

test/getvar_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"testing"
66

7-
"github.com/gdharley/flowable-external-client-golang/flowable"
7+
"github.com/flowable/flowable-external-client-golang/flowable"
88
)
99

1010
func TestGetVar_String(t *testing.T) {

test/variables_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package worker_test
33
import (
44
"testing"
55

6-
"github.com/gdharley/flowable-external-client-golang/flowable"
6+
"github.com/flowable/flowable-external-client-golang/flowable"
77
)
88

99
func TestExtractVariablesFromBody_MapFormat(t *testing.T) {

worker/external_worker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package worker
33
import (
44
"strconv"
55

6-
"github.com/gdharley/flowable-external-client-golang/flowable"
6+
"github.com/flowable/flowable-external-client-golang/flowable"
77
)
88

99
// ExternalWorker is the worker handler function used by the Flowable subscriber.

0 commit comments

Comments
 (0)