Module setup, initial command handling & bot initialization

This commit is contained in:
2023-12-11 20:25:17 -06:00
parent 225a2a78aa
commit 941e6ac531
2 changed files with 155 additions and 0 deletions

11
go.mod Normal file
View File

@@ -0,0 +1,11 @@
module park
go 1.21.3
require (
github.com/bwmarrin/discordgo v0.27.1 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/joho/godotenv v1.5.1 // indirect
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b // indirect
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 // indirect
)