Skip to content

Commit b253217

Browse files
authored
Merge pull request #23 from codeinuit/refactor/rename-package-and-update-golang-to-121
Refactor/rename package and update golang to 121
2 parents 4e02d62 + cdd6bf0 commit b253217

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

cmd/shibesbot/main.go

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@ import (
1111
"syscall"
1212
"time"
1313

14-
"github.com/P147x/shibesbot/cmd/shibesbot/monitoring"
15-
"github.com/P147x/shibesbot/pkg/cache"
16-
"github.com/P147x/shibesbot/pkg/cache/redis"
17-
"github.com/P147x/shibesbot/pkg/logger"
18-
"github.com/P147x/shibesbot/pkg/logger/logrus"
14+
"github.com/codeinuit/shibesbot/cmd/shibesbot/monitoring"
15+
"github.com/codeinuit/shibesbot/pkg/cache"
16+
"github.com/codeinuit/shibesbot/pkg/cache/redis"
17+
"github.com/codeinuit/shibesbot/pkg/logger"
18+
"github.com/codeinuit/shibesbot/pkg/logger/logrus"
19+
1920
"github.com/bwmarrin/discordgo"
2021
"github.com/robfig/cron/v3"
2122
)

cmd/shibesbot/monitoring/monitoring.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"net/http"
66

7-
"github.com/P147x/shibesbot/pkg/logger"
7+
"github.com/codeinuit/shibesbot/pkg/logger"
88
"github.com/prometheus/client_golang/prometheus/promhttp"
99
)
1010

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
module github.com/P147x/shibesbot
1+
module github.com/codeinuit/shibesbot
22

3-
go 1.19
3+
go 1.21
44

55
require (
66
github.com/bwmarrin/discordgo v0.27.1

pkg/cache/localstorage_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"testing"
66

7-
"github.com/P147x/shibesbot/pkg/cache"
8-
"github.com/P147x/shibesbot/pkg/cache/localstorage"
7+
"github.com/codeinuit/shibesbot/pkg/cache"
8+
"github.com/codeinuit/shibesbot/pkg/cache/localstorage"
99
"github.com/stretchr/testify/assert"
1010
)
1111

0 commit comments

Comments
 (0)