1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-06 17:41:00 +00:00

refactor(database): get rid of the sqlite tentative

This commit is contained in:
jvoisin 2025-07-02 14:52:46 +02:00 committed by Frédéric Guillot
parent 69a74c4abf
commit 15e4c3a374
6 changed files with 144 additions and 188 deletions

View file

@ -1,5 +1,3 @@
//go:build !sqlite
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
@ -25,7 +23,3 @@ func NewConnectionPool(dsn string, minConnections, maxConnections int, connectio
return db, nil
}
func getDriverStr() string {
return "postgresql"
}