Adding crypto package to hash user's password on our User Model. Create our User Model with some helpers. Creating migration for our users table.
Some checks failed
Deploy Greenlight API / deploy (push) Failing after 49s

This commit is contained in:
Maxime Delporte
2025-11-25 11:35:24 +01:00
parent 6b4056e0f5
commit 5a4b7bceb0
6 changed files with 97 additions and 1 deletions

1
go.mod
View File

@@ -5,5 +5,6 @@ go 1.25.1
require (
github.com/julienschmidt/httprouter v1.3.0 // indirect
github.com/lib/pq v1.10.9 // indirect
golang.org/x/crypto v0.45.0 // indirect
golang.org/x/time v0.14.0 // indirect
)