mirror of
https://github.com/btouchard/ackify.git
synced 2025-12-30 17:39:44 -06:00
- Integrate SHM SDK (v1.2.0) to collect anonymous usage statistics - Track documents, confirmations, webhooks and reminders count - Add ACKIFY_TELEMETRY env var (disabled by default, opt-in)
31 lines
959 B
Modula-2
31 lines
959 B
Modula-2
module github.com/btouchard/ackify-ce
|
|
|
|
go 1.24.5
|
|
|
|
require (
|
|
github.com/btouchard/shm v1.2.0
|
|
github.com/go-chi/chi/v5 v5.2.3
|
|
github.com/go-mail/mail/v2 v2.3.0
|
|
github.com/golang-migrate/migrate/v4 v4.19.0
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gorilla/securecookie v1.1.2
|
|
github.com/gorilla/sessions v1.4.0
|
|
github.com/lib/pq v1.10.9
|
|
github.com/stretchr/testify v1.11.1
|
|
golang.org/x/oauth2 v0.31.0
|
|
golang.org/x/text v0.29.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
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/kr/pretty v0.3.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.13.1 // indirect
|
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/mail.v2 v2.3.1 // indirect
|
|
)
|