Parcourir la source

Changed the discordgo import

Thisnthat il y a 5 ans
Parent
commit
07aa5947f3
3 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 1 1
      bot.go
  2. 1 1
      members.go
  3. 1 1
      session.go

+ 1 - 1
bot.go

@@ -8,7 +8,7 @@ import (
 	"syscall"
 
 	"github.com/Sirupsen/logrus"
-	"github.com/bwmarrin/discordgo"
+	"github.com/thisnthat-dev/discordgo"
 )
 
 type Bot struct {

+ 1 - 1
members.go

@@ -1,7 +1,7 @@
 package discord
 
 import (
-	"github.com/bwmarrin/discordgo"
+	"github.com/thisnthat-dev/discordgo"
 )
 
 type MemberUpdate struct {

+ 1 - 1
session.go

@@ -1,6 +1,6 @@
 package discord
 
-import "github.com/bwmarrin/discordgo"
+import "github.com/thisnthat-dev/discordgo"
 
 // GetSession - Get a discord session from the provided token
 func GetSession(token string) (*discordgo.Session, error) {