go.mod 447 B

123456789101112131415161718
  1. module github.com/mk6i/retro-aim-server
  2. go 1.21.3
  3. require (
  4. github.com/google/uuid v1.5.0
  5. github.com/kelseyhightower/envconfig v1.4.0
  6. github.com/mattn/go-sqlite3 v1.14.19
  7. github.com/mitchellh/go-wordwrap v1.0.1
  8. github.com/stretchr/testify v1.8.4
  9. )
  10. require (
  11. github.com/davecgh/go-spew v1.1.1 // indirect
  12. github.com/pmezard/go-difflib v1.0.0 // indirect
  13. github.com/stretchr/objx v0.5.0 // indirect
  14. gopkg.in/yaml.v3 v3.0.1 // indirect
  15. )