Skip to content

Commit

Permalink
Replaced cachestore, bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed Jul 9, 2022
1 parent f18ae18 commit fadb1be
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 19 deletions.
2 changes: 1 addition & 1 deletion config/cachestore.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package config
import (
"errors"

"github.com/BuxOrg/bux/cachestore"
"github.com/mrz1836/go-cachestore"
)

// Validate checks the configuration for specific rules
Expand Down
2 changes: 1 addition & 1 deletion config/cachestore_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package config
import (
"testing"

"github.com/BuxOrg/bux/cachestore"
"github.com/mrz1836/go-cachestore"
"github.com/stretchr/testify/require"
)

Expand Down
4 changes: 2 additions & 2 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"errors"
"time"

"github.com/BuxOrg/bux/cachestore"
"github.com/BuxOrg/bux/datastore"
"github.com/BuxOrg/bux/taskmanager"
validation "github.com/go-ozzo/ozzo-validation"
"github.com/mrz1836/go-cachestore"
"github.com/newrelic/go-agent/v3/newrelic"
)

Expand All @@ -27,7 +27,7 @@ const (
EnvironmentStaging = "staging"
EnvironmentTest = "test"
HealthRequestPath = "health"
Version = "v0.2.1"
Version = "v0.2.2"
)

// Local variables for configuration
Expand Down
2 changes: 1 addition & 1 deletion config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"os"
"testing"

"github.com/BuxOrg/bux/cachestore"
"github.com/BuxOrg/bux/datastore"
"github.com/mrz1836/go-cachestore"
"github.com/newrelic/go-agent/v3/newrelic"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
Expand Down
2 changes: 1 addition & 1 deletion config/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import (
"time"

"github.com/BuxOrg/bux"
"github.com/BuxOrg/bux/cachestore"
"github.com/BuxOrg/bux/chainstate"
"github.com/BuxOrg/bux/datastore"
"github.com/BuxOrg/bux/taskmanager"
"github.com/BuxOrg/bux/utils"
"github.com/go-redis/redis/v8"
"github.com/mrz1836/go-cachestore"
"github.com/mrz1836/go-logger"
"github.com/newrelic/go-agent/v3/newrelic"
)
Expand Down
12 changes: 6 additions & 6 deletions go.mod

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 10 additions & 7 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fadb1be

Please sign in to comment.