Files
go-hurobot/go.mod
AkashiNeko f95b8bfc8b feat: add RCON integration and Minecraft command system
- Add RCON configuration management with `rcon` command
- Add Minecraft command execution with `mc` command
- Add automatic message forwarding from groups to Minecraft
- Add group_rcon_configs database table for RCON settings
2025-08-06 10:08:09 +08:00

57 lines
2.1 KiB
Modula-2

module go-hurobot
go 1.24.0
require (
github.com/chromedp/chromedp v0.13.6
github.com/go-echarts/go-echarts/v2 v2.6.0
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
github.com/google/uuid v1.6.0
github.com/gorilla/websocket v1.5.3
github.com/longportapp/openapi-go v0.16.2
github.com/openai/openai-go v1.5.0
github.com/shopspring/decimal v1.4.0
golang.org/x/image v0.28.0
gorm.io/gorm v1.25.12
)
require (
github.com/Allenxuxu/ringbuffer v0.0.11 // indirect
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/Netflix/go-env v0.0.0-20220526054621-78278af1949d // indirect
github.com/chromedp/cdproto v0.0.0-20250403032234-65de8f5d025b // indirect
github.com/chromedp/sysutil v1.1.0 // indirect
github.com/go-json-experiment/json v0.0.0-20250211171154-1ae217ad3535 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.4.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/gorcon/rcon v1.4.0 // indirect
github.com/jinzhu/copier v0.3.5 // indirect
github.com/joho/godotenv v1.4.0 // indirect
github.com/longportapp/openapi-protobufs/gen/go v0.5.0 // indirect
github.com/longportapp/openapi-protocol/go v0.4.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rogpeppe/go-internal v1.14.1 // indirect
github.com/tidwall/gjson v1.14.4 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
github.com/tidwall/sjson v1.2.5 // indirect
golang.org/x/sys v0.29.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v5 v5.5.5 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
golang.org/x/crypto v0.32.0 // indirect
golang.org/x/sync v0.15.0 // indirect
golang.org/x/text v0.26.0 // indirect
gorm.io/driver/postgres v1.5.11
)