summaryrefslogtreecommitdiff
path: root/internal/storage/sql_provider_backend_sqlite.go
diff options
context:
space:
mode:
authorguangwu <guoguangwu@magic-shield.com>2023-10-26 02:58:17 +0800
committerGitHub <noreply@github.com>2023-10-26 05:58:17 +1100
commit3412426ca06d1f6bfe6843cdd772df332303a359 (patch)
treedf4402c8d8637c5f9963ff90437e48df6ae3da17 /internal/storage/sql_provider_backend_sqlite.go
parentaf1c7083a4a00d138bee58b18b8865a65f2b5a99 (diff)
refactor: remove duplicate import (#6179)
This removes a side-effect import for sqlite3 which is unused since the standard import is used. Signed-off-by: guoguangwu <guoguangwu@magic-shield.com>
Diffstat (limited to 'internal/storage/sql_provider_backend_sqlite.go')
-rw-r--r--internal/storage/sql_provider_backend_sqlite.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/storage/sql_provider_backend_sqlite.go b/internal/storage/sql_provider_backend_sqlite.go
index e1f6d701c..a7e8d5949 100644
--- a/internal/storage/sql_provider_backend_sqlite.go
+++ b/internal/storage/sql_provider_backend_sqlite.go
@@ -5,7 +5,6 @@ import (
"encoding/base64"
"github.com/mattn/go-sqlite3"
- _ "github.com/mattn/go-sqlite3" // Load the SQLite Driver used in the connection string.
"github.com/authelia/authelia/v4/internal/configuration/schema"
)