chore: Adds login and user creation support to the API.

This commit is contained in:
Tera << 8 2025-01-05 20:51:06 -05:00
parent 96833b238b
commit 843cd34785
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
13 changed files with 683 additions and 12 deletions

5
go.mod
View file

@ -9,6 +9,8 @@ require (
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/urfave/cli/v2 v2.27.5
golang.org/x/crypto v0.31.0
golang.org/x/term v0.28.0
gopkg.in/yaml.v3 v3.0.1
gorm.io/driver/postgres v1.5.11
gorm.io/driver/sqlite v1.5.7
gorm.io/gorm v1.25.12
@ -57,8 +59,7 @@ require (
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/text v0.21.0 // indirect
google.golang.org/protobuf v1.36.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)