go.mod 729 B

12345678910111213141516171819202122
  1. module github.com/felamaslen/go-music-player
  2. go 1.15
  3. require (
  4. github.com/anyhon/engine v0.1.0
  5. github.com/dhowden/tag v0.0.0-20200828214007-46e57f75dbfc
  6. github.com/go-redis/redis v6.15.9+incompatible // indirect
  7. github.com/go-redis/redis/v7 v7.4.0
  8. github.com/golang-migrate/migrate/v4 v4.13.0
  9. github.com/gorilla/mux v1.8.0
  10. github.com/gorilla/websocket v1.4.2
  11. github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
  12. github.com/jackc/pgx v3.6.2+incompatible
  13. github.com/jackc/pgx/v4 v4.9.2 // indirect
  14. github.com/jmoiron/sqlx v1.2.0
  15. github.com/joho/godotenv v1.3.0
  16. github.com/lib/pq v1.3.0
  17. github.com/onsi/ginkgo v1.14.2
  18. github.com/onsi/gomega v1.10.1
  19. github.com/stretchr/testify v1.5.1 // indirect
  20. )