| 12345678910111213141516171819202122 |
- module github.com/mk6i/retro-aim-server
- go 1.21.3
- require (
- github.com/golang-migrate/migrate/v4 v4.17.1
- github.com/google/uuid v1.5.0
- github.com/kelseyhightower/envconfig v1.4.0
- github.com/mattn/go-sqlite3 v1.14.19
- github.com/mitchellh/go-wordwrap v1.0.1
- github.com/stretchr/testify v1.8.4
- )
- require (
- github.com/davecgh/go-spew v1.1.1 // indirect
- github.com/hashicorp/errwrap v1.1.0 // indirect
- github.com/hashicorp/go-multierror v1.1.1 // indirect
- github.com/pmezard/go-difflib v1.0.0 // indirect
- github.com/stretchr/objx v0.5.0 // indirect
- go.uber.org/atomic v1.7.0 // indirect
- gopkg.in/yaml.v3 v3.0.1 // indirect
- )
|