go.mod 398 B

1234567891011121314151617
  1. module github.com/mkaminski/goaim
  2. go 1.20
  3. require (
  4. github.com/google/uuid v1.3.0
  5. github.com/kelseyhightower/envconfig v1.4.0
  6. github.com/mattn/go-sqlite3 v1.14.17
  7. github.com/stretchr/testify v1.8.4
  8. )
  9. require (
  10. github.com/davecgh/go-spew v1.1.1 // indirect
  11. github.com/pmezard/go-difflib v1.0.0 // indirect
  12. github.com/stretchr/objx v0.5.0 // indirect
  13. gopkg.in/yaml.v3 v3.0.1 // indirect
  14. )