Skip to content

Commit

Permalink
Merge pull request #23 from codeinuit/refactor/rename-package-and-upd…
Browse files Browse the repository at this point in the history
…ate-golang-to-121

Refactor/rename package and update golang to 121
  • Loading branch information
codeinuit authored Mar 3, 2024
2 parents 4e02d62 + cdd6bf0 commit b253217
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
11 changes: 6 additions & 5 deletions cmd/shibesbot/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ import (
"syscall"
"time"

"github.com/P147x/shibesbot/cmd/shibesbot/monitoring"
"github.com/P147x/shibesbot/pkg/cache"
"github.com/P147x/shibesbot/pkg/cache/redis"
"github.com/P147x/shibesbot/pkg/logger"
"github.com/P147x/shibesbot/pkg/logger/logrus"
"github.com/codeinuit/shibesbot/cmd/shibesbot/monitoring"
"github.com/codeinuit/shibesbot/pkg/cache"
"github.com/codeinuit/shibesbot/pkg/cache/redis"
"github.com/codeinuit/shibesbot/pkg/logger"
"github.com/codeinuit/shibesbot/pkg/logger/logrus"

"github.com/bwmarrin/discordgo"
"github.com/robfig/cron/v3"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/shibesbot/monitoring/monitoring.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"net/http"

"github.com/P147x/shibesbot/pkg/logger"
"github.com/codeinuit/shibesbot/pkg/logger"
"github.com/prometheus/client_golang/prometheus/promhttp"
)

Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/P147x/shibesbot
module github.com/codeinuit/shibesbot

go 1.19
go 1.21

require (
github.com/bwmarrin/discordgo v0.27.1
Expand Down
4 changes: 2 additions & 2 deletions pkg/cache/localstorage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"testing"

"github.com/P147x/shibesbot/pkg/cache"
"github.com/P147x/shibesbot/pkg/cache/localstorage"
"github.com/codeinuit/shibesbot/pkg/cache"
"github.com/codeinuit/shibesbot/pkg/cache/localstorage"
"github.com/stretchr/testify/assert"
)

Expand Down

0 comments on commit b253217

Please sign in to comment.