pogdark-api/go.mod

20 lines
503 B
Modula-2
Raw Normal View History

2024-11-07 03:35:41 +00:00
module pogdark-server
go 1.22
require (
2025-01-03 02:38:05 +00:00
github.com/confluentinc/confluent-kafka-go v1.9.2
2024-11-07 03:35:41 +00:00
github.com/go-redis/redis/v8 v8.11.5
github.com/gorilla/mux v1.8.1
2025-01-03 02:38:05 +00:00
github.com/stretchr/testify v1.10.0
2024-11-07 16:29:23 +00:00
gopkg.in/yaml.v2 v2.4.0
2024-11-07 03:35:41 +00:00
)
require (
github.com/cespare/xxhash/v2 v2.1.2 // indirect
2025-01-03 02:38:05 +00:00
github.com/davecgh/go-spew v1.1.1 // indirect
2024-11-07 03:35:41 +00:00
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
2025-01-03 02:38:05 +00:00
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
2024-11-07 03:35:41 +00:00
)