chore(server): add sqlite driver to go.mod/go.sum
Build and Publish Server / build (push) Successful in 59s

This commit is contained in:
2026-08-10 17:43:09 +00:00
parent 8b5bfe8385
commit 3cc3edeef9
2 changed files with 9 additions and 5 deletions
+5 -3
View File
@@ -4,7 +4,11 @@ go 1.22
require (
github.com/gin-gonic/gin v1.9.1
github.com/golang-jwt/jwt/v5 v5.3.1
github.com/joho/godotenv v1.5.1
gorm.io/driver/mysql v1.6.0
gorm.io/driver/sqlite v1.6.0
gorm.io/gorm v1.31.2
)
require (
@@ -36,10 +40,8 @@ require (
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/go-sql-driver/mysql v1.8.1 // indirect
github.com/golang-jwt/jwt/v5 v5.3.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
golang.org/x/crypto v0.17.0 // indirect
gorm.io/driver/mysql v1.6.0 // indirect
gorm.io/gorm v1.31.2 // indirect
)