Bläddra i källkod

Updating the source of discordgo

Thisnthat 5 år sedan
förälder
incheckning
23b2c667c6
6 ändrade filer med 6 tillägg och 6 borttagningar
  1. 1 1
      bot.go
  2. 1 1
      bot/event/mux/help.go
  3. 1 1
      bot/event/mux/message.go
  4. 1 1
      bot/event/mux/router.go
  5. 1 1
      members.go
  6. 1 1
      session.go

+ 1 - 1
bot.go

@@ -8,8 +8,8 @@ import (
 	"syscall"
 
 	"git.mgmcomp.net/thisnthat/discord/bot/event/mux"
+	"git.mgmcomp.net/thisnthat/discordgo"
 	"github.com/Sirupsen/logrus"
-	"github.com/thisnthat-dev/discordgo"
 )
 
 type Bot struct {

+ 1 - 1
bot/event/mux/help.go

@@ -5,7 +5,7 @@ import (
 	"sort"
 	"strconv"
 
-	"github.com/thisnthat-dev/discordgo"
+	"git.mgmcomp.net/thisnthat/discordgo"
 )
 
 func (r *Router) helpCommandHandler(s *discordgo.Session, m *discordgo.Message, ctx *Context) {

+ 1 - 1
bot/event/mux/message.go

@@ -5,8 +5,8 @@ import (
 	"regexp"
 	"strings"
 
+	"git.mgmcomp.net/thisnthat/discordgo"
 	"github.com/Sirupsen/logrus"
-	"github.com/thisnthat-dev/discordgo"
 )
 
 // OnMessageCreate is a DiscordGo Event Handler function.  This must be

+ 1 - 1
bot/event/mux/router.go

@@ -6,7 +6,7 @@ import (
 
 	"github.com/Sirupsen/logrus"
 
-	"github.com/thisnthat-dev/discordgo"
+	"git.mgmcomp.net/thisnthat/discordgo"
 )
 
 // RouteOptions holds information about a specific message route handler

+ 1 - 1
members.go

@@ -1,7 +1,7 @@
 package discord
 
 import (
-	"github.com/thisnthat-dev/discordgo"
+	"git.mgmcomp.net/thisnthat/discordgo"
 )
 
 // MemberUpdate provides the data structure for a member update

+ 1 - 1
session.go

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