-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
27 lines (24 loc) · 892 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module github.com/zarkopopovski/popup-manager
go 1.23.3
require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/golang-migrate/migrate/v4 v4.17.1
github.com/jmoiron/sqlx v1.3.5
github.com/joho/godotenv v1.5.1
github.com/mattn/go-sqlite3 v1.14.16
github.com/mileusna/useragent v1.3.4
github.com/oschwald/geoip2-golang v1.9.0
github.com/rs/cors v1.10.1
github.com/twinj/uuid v1.0.0
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
)
require (
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/myesui/uuid v1.0.0 // indirect
github.com/oschwald/maxminddb-golang v1.11.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
golang.org/x/sys v0.17.0 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/stretchr/testify.v1 v1.2.2 // indirect
)