From 0fc7a2041b536cbf82ff41d126f32bf789a2563e Mon Sep 17 00:00:00 2001 From: Yousuf Jawwad Date: Thu, 12 Sep 2024 10:11:12 +0500 Subject: [PATCH] chore(): change package name to durex --- .golangci.yaml | 2 +- README.md | 6 +++--- go.mod | 2 +- queues/queues.go | 2 +- queues/queues_test.go | 4 ++-- workflows/options_test.go | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.golangci.yaml b/.golangci.yaml index 0830a78..34c8b2c 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -52,7 +52,7 @@ linters-settings: sections: - standard # Standard section: captures all standard packages. - default # Default section: contains all imports that could not be matched to another section type. - - prefix(go.breu.io/temporal-tools) # Custom section: groups all imports with the specified Prefix. + - prefix(go.breu.io/durex) # Custom section: groups all imports with the specified Prefix. - blank # Blank section: contains all imports that could not be matched to another section type. # Default: true skip-generated: false diff --git a/README.md b/README.md index f6444b5..8929a92 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ ## 🚀 Install ```sh -go get go.breu.io/temporal-tools +go get go.breu.io/durex ``` **Compatibility**: go >= 1.21 @@ -207,7 +207,7 @@ package shared import ( "sync" - "go.breu.io/temporal-tools/queues" + "go.breu.io/durex/queues" ) var ( @@ -248,7 +248,7 @@ import ( "github.com/google/uuid" "go.temporal.io/sdk/workflow" - "go.breu.io/temporal-tools/workflows" + "go.breu.io/durex/workflows" ) func main() { diff --git a/go.mod b/go.mod index b93a96f..a319a6b 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module go.breu.io/temporal-tools +module go.breu.io/durex go 1.21.0 diff --git a/queues/queues.go b/queues/queues.go index cbd5b83..4f66385 100644 --- a/queues/queues.go +++ b/queues/queues.go @@ -28,7 +28,7 @@ import ( "go.temporal.io/sdk/worker" "go.temporal.io/sdk/workflow" - "go.breu.io/temporal-tools/workflows" + "go.breu.io/durex/workflows" ) type ( diff --git a/queues/queues_test.go b/queues/queues_test.go index bab5b44..4428af2 100644 --- a/queues/queues_test.go +++ b/queues/queues_test.go @@ -10,8 +10,8 @@ import ( "go.temporal.io/sdk/testsuite" "go.temporal.io/sdk/workflow" - "go.breu.io/temporal-tools/queues" - "go.breu.io/temporal-tools/workflows" + "go.breu.io/durex/queues" + "go.breu.io/durex/workflows" ) type ( diff --git a/workflows/options_test.go b/workflows/options_test.go index 5d536b5..f09b65c 100644 --- a/workflows/options_test.go +++ b/workflows/options_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/assert" - "go.breu.io/temporal-tools/workflows" + "go.breu.io/durex/workflows" ) func TestWorkflowMod(t *testing.T) {