modified: go.mod

modified:   go.sum
	new file:   internal/model/o_auth_provider.go
	modified:   internal/server/server.go
	deleted:    main
delete bin main in root directory
add OAuth struct
This commit is contained in:
2025-09-29 00:39:04 +05:00
parent ecbc2dbf69
commit b2bdb61733
5 changed files with 35 additions and 4 deletions
+8 -3
View File
@@ -7,6 +7,11 @@ require (
gorm.io/gorm v1.31.0
)
require (
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
golang.org/x/oauth2 v0.31.0 // indirect
)
require (
github.com/go-chi/chi/v5 v5.2.3
github.com/go-chi/cors v1.2.2
@@ -17,7 +22,7 @@ require (
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
golang.org/x/crypto v0.31.0
golang.org/x/sync v0.10.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/crypto v0.42.0
golang.org/x/sync v0.17.0 // indirect
golang.org/x/text v0.29.0 // indirect
)