From c64dfc88ea96d4efa55bcb4b8f9cea18a84fb339 Mon Sep 17 00:00:00 2001 From: Dikiy13371 Date: Wed, 8 Oct 2025 01:53:53 +0300 Subject: [PATCH] db.go sqlite --- database/db.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/database/db.go b/database/db.go index ef162896..aa6cd67b 100644 --- a/database/db.go +++ b/database/db.go @@ -4,11 +4,9 @@ import ( "errors" "fmt" + "github.com/glebarez/sqlite" "github.com/mhsanaei/3x-ui/v2/database/model" "golang.org/x/crypto/bcrypt" - - // "gorm.io/driver/sqlite" - "github.com/glebarez/sqlite" "gorm.io/gorm" )