From 69ffbe6a480d0c7ae6058ee62f7811b28482e0ac Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Fri, 16 Sep 2016 11:19:26 +1000 Subject: [PATCH] storage: Move sqlite3 import to appropriate file --- storage/db.go | 2 ++ storage/file.go | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/storage/db.go b/storage/db.go index 8e4b9041..cc7f8d09 100644 --- a/storage/db.go +++ b/storage/db.go @@ -4,6 +4,8 @@ import ( "database/sql" "path/filepath" + _ "github.com/mattn/go-sqlite3" + "github.com/anacrolix/torrent/metainfo" ) diff --git a/storage/file.go b/storage/file.go index de14c2bb..55603bdd 100644 --- a/storage/file.go +++ b/storage/file.go @@ -6,7 +6,6 @@ import ( "path/filepath" "github.com/anacrolix/missinggo" - _ "github.com/mattn/go-sqlite3" "github.com/anacrolix/torrent/metainfo" ) -- 2.50.0