mirror of https://github.com/hak5/scuzzy.git
Misc: Create go module
parent
6c7cf8606a
commit
d6eb1c79dc
|
@ -13,7 +13,7 @@ import (
|
|||
"syscall"
|
||||
"time"
|
||||
|
||||
"github.com/bwmarrin/discord.go"
|
||||
"github.com/bwmarrin/discordgo"
|
||||
)
|
||||
|
||||
// Core Bot Properties
|
||||
|
|
|
@ -2,7 +2,7 @@ package features
|
|||
|
||||
import (
|
||||
"errors"
|
||||
discordgo "github.com/bwmarrin/discord.go"
|
||||
discordgo "github.com/bwmarrin/discordgo"
|
||||
"log"
|
||||
"os"
|
||||
"strings"
|
||||
|
|
|
@ -2,7 +2,7 @@ package features
|
|||
|
||||
import (
|
||||
"errors"
|
||||
discordgo "github.com/bwmarrin/discord.go"
|
||||
discordgo "github.com/bwmarrin/discordgo"
|
||||
"github.com/foxtrot/scuzzy/models"
|
||||
"strings"
|
||||
)
|
||||
|
|
|
@ -2,7 +2,7 @@ package features
|
|||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/bwmarrin/discord.go"
|
||||
"github.com/bwmarrin/discordgo"
|
||||
"log"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package features
|
||||
|
||||
import (
|
||||
"github.com/bwmarrin/discord.go"
|
||||
"github.com/bwmarrin/discordgo"
|
||||
"github.com/foxtrot/scuzzy/models"
|
||||
"time"
|
||||
)
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/bwmarrin/discord.go"
|
||||
"github.com/bwmarrin/discordgo"
|
||||
"github.com/foxtrot/scuzzy/models"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
|
|
|
@ -2,7 +2,7 @@ package features
|
|||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/bwmarrin/discord.go"
|
||||
"github.com/bwmarrin/discordgo"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
|
|
|
@ -2,7 +2,7 @@ package features
|
|||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/bwmarrin/discord.go"
|
||||
"github.com/bwmarrin/discordgo"
|
||||
"strings"
|
||||
)
|
||||
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
module github.com/foxtrot/scuzzy
|
||||
|
||||
go 1.16
|
||||
|
||||
require github.com/bwmarrin/discordgo v0.23.2
|
|
@ -0,0 +1,6 @@
|
|||
github.com/bwmarrin/discordgo v0.23.2 h1:BzrtTktixGHIu9Tt7dEE6diysEF9HWnXeHuoJEt2fH4=
|
||||
github.com/bwmarrin/discordgo v0.23.2/go.mod h1:c1WtWUGN6nREDmzIpyTp/iD3VYt4Fpx+bVyfBG7JE+M=
|
||||
github.com/gorilla/websocket v1.4.0 h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=
|
||||
github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
|
||||
golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16 h1:y6ce7gCWtnH+m3dCjzQ1PCuwl28DDIc3VNnvY29DlIA=
|
||||
golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
|
|
@ -1,7 +1,7 @@
|
|||
package permissions
|
||||
|
||||
import (
|
||||
"github.com/bwmarrin/discord.go"
|
||||
"github.com/bwmarrin/discordgo"
|
||||
"github.com/foxtrot/scuzzy/models"
|
||||
"strings"
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue