2024-06-26 15:30:39 +00:00
|
|
|
module go-udemy-web-1
|
|
|
|
|
|
|
|
go 1.21.0
|
2024-06-28 10:59:47 +00:00
|
|
|
|
2024-07-01 12:34:15 +00:00
|
|
|
// github.com/CloudyKit/jet --> Check this later
|
2024-07-07 20:50:46 +00:00
|
|
|
//
|
|
|
|
// ORM packages:
|
|
|
|
// upper/db https://github.com/upper/db
|
|
|
|
// gorm.io/gorm
|
2024-07-01 12:34:15 +00:00
|
|
|
|
2024-07-10 09:30:04 +00:00
|
|
|
// TODO Use default http package to rewrite the project with go 1.22.1
|
|
|
|
|
2024-06-28 11:33:43 +00:00
|
|
|
require github.com/go-chi/chi/v5 v5.0.14
|
|
|
|
|
|
|
|
require github.com/justinas/nosurf v1.1.1
|
2024-06-28 13:30:00 +00:00
|
|
|
|
2024-06-28 13:41:25 +00:00
|
|
|
require github.com/alexedwards/scs/v2 v2.8.0
|
2024-07-01 11:47:52 +00:00
|
|
|
|
2024-07-06 20:26:41 +00:00
|
|
|
require (
|
|
|
|
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2
|
|
|
|
github.com/jackc/pgconn v1.14.3
|
|
|
|
github.com/jackc/pgx/v5 v5.6.0
|
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
|
|
github.com/jackc/pgproto3/v2 v2.3.3 // indirect
|
|
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
|
|
|
github.com/jackc/puddle/v2 v2.2.1 // indirect
|
|
|
|
golang.org/x/crypto v0.25.0 // indirect
|
|
|
|
golang.org/x/sync v0.7.0 // indirect
|
|
|
|
golang.org/x/text v0.16.0 // indirect
|
|
|
|
)
|