implement basic whitelist add and remove functionality

This commit is contained in:
2024-10-21 19:58:19 +00:00
commit 04d4cb630b
9 changed files with 352 additions and 0 deletions

14
go.mod Normal file
View File

@@ -0,0 +1,14 @@
module discord-minecraft-whitelist-bot
go 1.23.2
require (
github.com/bwmarrin/discordgo v0.28.1
github.com/gorcon/rcon v1.3.5
)
require (
github.com/gorilla/websocket v1.5.3 // indirect
golang.org/x/crypto v0.28.0 // indirect
golang.org/x/sys v0.26.0 // indirect
)