浏览代码

Changed the discordgo import

Thisnthat 5 年之前
父节点
当前提交
07aa5947f3
共有 3 个文件被更改,包括 3 次插入3 次删除
  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) {