go.mod 717 B

123456789101112131415161718192021222324
  1. module github.com/ayn2op/discordo
  2. go 1.19
  3. require (
  4. github.com/diamondburned/arikawa/v3 v3.2.0
  5. github.com/gdamore/tcell/v2 v2.5.4
  6. github.com/rivo/tview v0.0.0-20230104153304-892d1a2eb0da
  7. gopkg.in/yaml.v3 v3.0.1
  8. )
  9. require (
  10. github.com/gdamore/encoding v1.0.0 // indirect
  11. github.com/gorilla/schema v1.2.0 // indirect
  12. github.com/gorilla/websocket v1.5.0 // indirect
  13. github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
  14. github.com/mattn/go-runewidth v0.0.14 // indirect
  15. github.com/pkg/errors v0.9.1 // indirect
  16. github.com/rivo/uniseg v0.4.3 // indirect
  17. golang.org/x/sys v0.4.0 // indirect
  18. golang.org/x/term v0.4.0 // indirect
  19. golang.org/x/text v0.6.0 // indirect
  20. golang.org/x/time v0.3.0 // indirect
  21. )