diff --git a/main.go b/main.go index 941b5f5..6c13ffa 100644 --- a/main.go +++ b/main.go @@ -6,6 +6,9 @@ import ( "git.cryptic.systems/volker.raschek/flucky/cli" "github.com/Masterminds/semver" + + _ "github.com/lib/pq" + _ "github.com/mattn/go-sqlite3" ) var ( diff --git a/pkg/repository/db/postgres.go b/pkg/repository/db/postgres.go index ef9806f..315594e 100644 --- a/pkg/repository/db/postgres.go +++ b/pkg/repository/db/postgres.go @@ -8,7 +8,6 @@ import ( "git.cryptic.systems/volker.raschek/flucky/pkg/types" "git.cryptic.systems/volker.raschek/go-logger" - _ "github.com/lib/pq" ) // Postgres implementation diff --git a/pkg/repository/db/sqlite.go b/pkg/repository/db/sqlite.go index 73821a9..a89edde 100644 --- a/pkg/repository/db/sqlite.go +++ b/pkg/repository/db/sqlite.go @@ -7,7 +7,6 @@ import ( "git.cryptic.systems/volker.raschek/flucky/pkg/types" "git.cryptic.systems/volker.raschek/go-logger" - _ "github.com/mattn/go-sqlite3" ) // SQLite implementation