diff --git a/cmd/shibesbot/main.go b/cmd/shibesbot/main.go index 3a8c3f6..d7ea74a 100644 --- a/cmd/shibesbot/main.go +++ b/cmd/shibesbot/main.go @@ -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" ) diff --git a/cmd/shibesbot/monitoring/monitoring.go b/cmd/shibesbot/monitoring/monitoring.go index 3a9f5c2..9f33f82 100644 --- a/cmd/shibesbot/monitoring/monitoring.go +++ b/cmd/shibesbot/monitoring/monitoring.go @@ -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" ) diff --git a/go.mod b/go.mod index 6d2a22f..b779d8f 100644 --- a/go.mod +++ b/go.mod @@ -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 diff --git a/pkg/cache/localstorage_test.go b/pkg/cache/localstorage_test.go index c99f830..614d87c 100644 --- a/pkg/cache/localstorage_test.go +++ b/pkg/cache/localstorage_test.go @@ -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" )