fix(server): use pure-Go sqlite driver (glebarez/sqlite) for CGO_ENABLED=0 builds
Build and Publish Server / build (push) Successful in 3m22s

This commit is contained in:
2026-08-10 17:47:36 +00:00
parent 3cc3edeef9
commit d6ce5cd0f3
3 changed files with 33 additions and 4 deletions
+1 -1
View File
@@ -4,8 +4,8 @@ import (
"fmt"
"log"
"github.com/glebarez/sqlite"
"gorm.io/driver/mysql"
"gorm.io/driver/sqlite"
"gorm.io/gorm"
"github.com/gouki/lunar-server/internal/model"
)