1
0
mirror of https://github.com/mgerb/ServerStatus synced 2026-01-11 19:52:49 +00:00

Updates and maintenance

- switch from dep to go modules
- update to discordgo v0.27.1
- fix offline/online message bug
This commit is contained in:
2024-03-03 11:27:42 -06:00
committed by Mitchell Gerber
parent ed232fc785
commit 50a06b98be
7 changed files with 111 additions and 204 deletions

17
go.mod Normal file
View File

@@ -0,0 +1,17 @@
module github.com/mgerb/ServerStatus
go 1.22.0
require (
github.com/anvie/port-scanner v0.0.0-20180225151059-8159197d3770
github.com/bwmarrin/discordgo v0.27.1
github.com/kidoman/go-steam v0.0.0-20141221015629-2e40e0d508cb
)
require (
github.com/Sirupsen/logrus v1.0.6 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b // indirect
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 // indirect
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
)