Skip to content

Commit

Permalink
[kareless] rename module namespace to toolbox
Browse files Browse the repository at this point in the history
Signed-off-by: Pouyan Heyratpour <pouyan@janstun.com>
  • Loading branch information
pouyanh committed Sep 20, 2023
1 parent b23cd06 commit 900a28c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions kareless/go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
module github.com/janstoon/abzar/kareless
module github.com/janstoon/toolbox/kareless

go 1.21.0

require (
github.com/janstoon/abzar/conv v0.0.0-20230914124956-1473c253af2c
github.com/janstoon/toolbox/conv v0.2.0
github.com/stretchr/testify v1.8.4
golang.org/x/sync v0.3.0
)

require (
Expand Down
6 changes: 4 additions & 2 deletions kareless/go.sum
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/janstoon/abzar/conv v0.0.0-20230914124956-1473c253af2c h1:zInL1N+WqIGkMNwVO4T8XoxbqLpX06yTTR2eUr1vpQo=
github.com/janstoon/abzar/conv v0.0.0-20230914124956-1473c253af2c/go.mod h1:hZOan9zJPtTfhvPGtIYjXwuTrUG8yF4/t0zxIZnWu60=
github.com/janstoon/toolbox/conv v0.2.0 h1:X7KV0tg5RHirSktmZw9v3/9wCcMeKgipxkhYU9oL6bw=
github.com/janstoon/toolbox/conv v0.2.0/go.mod h1:AtxMThQ2hVsvDZ666LUcSxVG/rOpoWPr/XqIa6NySps=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E=
golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
Expand Down
2 changes: 1 addition & 1 deletion kareless/kernel_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/stretchr/testify/assert"

"github.com/janstoon/abzar/kareless"
"github.com/janstoon/toolbox/kareless"
)

type settings map[string]string
Expand Down
2 changes: 1 addition & 1 deletion kareless/setting.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strconv"
"sync"

"github.com/janstoon/abzar/conv"
"github.com/janstoon/toolbox/conv"
)

type SettingSource interface {
Expand Down

0 comments on commit 900a28c

Please sign in to comment.