go.mod 753 B

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