1
0
Fork 0
forked from goffee/cup
cup/go.mod

51 lines
2 KiB
Modula-2
Raw Permalink Normal View History

2024-09-12 19:15:38 -04:00
module git.smarteching.com/goffee/cup
2024-09-15 20:01:52 -04:00
replace (
2024-09-16 19:36:38 -04:00
git.smarteching.com/goffee/cup/config => ./config
git.smarteching.com/goffee/cup/handlers => ./handlers
git.smarteching.com/goffee/cup/middlewares => ./middlewares
git.smarteching.com/goffee/cup/models => ./models
2024-09-15 20:01:52 -04:00
)
2024-09-15 12:50:36 -04:00
go 1.23.1
2024-09-12 19:15:38 -04:00
require (
2024-09-16 19:36:38 -04:00
git.smarteching.com/goffee/core v1.7.3
2024-09-15 12:50:36 -04:00
github.com/google/uuid v1.6.0
2024-09-12 19:15:38 -04:00
github.com/joho/godotenv v1.5.1
github.com/julienschmidt/httprouter v1.3.0
2024-09-15 12:50:36 -04:00
gorm.io/gorm v1.25.12
2024-09-12 19:15:38 -04:00
)
require (
github.com/SparkPost/gosparkpost v0.2.0 // indirect
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
2024-09-15 12:50:36 -04:00
github.com/go-chi/chi/v5 v5.0.8 // indirect
2024-09-12 19:15:38 -04:00
github.com/go-ozzo/ozzo-validation v3.6.0+incompatible // indirect
2024-09-15 12:50:36 -04:00
github.com/go-sql-driver/mysql v1.7.0 // indirect
github.com/golang-jwt/jwt/v5 v5.0.0 // indirect
2024-09-12 19:15:38 -04:00
github.com/harranali/mailing v1.2.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
2024-09-15 12:50:36 -04:00
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v5 v5.3.1 // indirect
2024-09-12 19:15:38 -04:00
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
2024-09-15 12:50:36 -04:00
github.com/json-iterator/go v1.1.10 // indirect
github.com/mailgun/mailgun-go/v4 v4.10.0 // indirect
github.com/mattn/go-sqlite3 v1.14.17 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
2024-09-12 19:15:38 -04:00
github.com/pkg/errors v0.9.1 // indirect
2024-09-15 12:50:36 -04:00
github.com/redis/go-redis/v9 v9.0.5 // indirect
2024-09-12 19:15:38 -04:00
github.com/sendgrid/rest v2.6.9+incompatible // indirect
2024-09-15 12:50:36 -04:00
github.com/sendgrid/sendgrid-go v3.12.0+incompatible // indirect
golang.org/x/crypto v0.11.0 // indirect
golang.org/x/net v0.10.0 // indirect
2024-09-12 19:15:38 -04:00
golang.org/x/text v0.14.0 // indirect
2024-09-15 12:50:36 -04:00
gorm.io/driver/mysql v1.5.1 // indirect
gorm.io/driver/postgres v1.5.2 // indirect
gorm.io/driver/sqlite v1.5.2 // indirect
2024-09-12 19:15:38 -04:00
)