Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(): change package name to durex #11

Merged
merged 1 commit into from
Sep 12, 2024
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
2 changes: 1 addition & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
## 🚀 Install

```sh
go get go.breu.io/temporal-tools
go get go.breu.io/durex
```

**Compatibility**: go >= 1.21
Expand Down Expand Up @@ -207,7 +207,7 @@ package shared
import (
"sync"

"go.breu.io/temporal-tools/queues"
"go.breu.io/durex/queues"
)

var (
Expand Down Expand Up @@ -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() {
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 go.breu.io/temporal-tools
module go.breu.io/durex

go 1.21.0

Expand Down
2 changes: 1 addition & 1 deletion queues/queues.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions queues/queues_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
2 changes: 1 addition & 1 deletion workflows/options_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Loading