summaryrefslogtreecommitdiff
path: root/internal/db/sqlite/driver.go
diff options
context:
space:
mode:
authorLibravatar Terin Stock <terinjokes@gmail.com>2025-03-10 00:11:39 +0100
committerLibravatar Terin Stock <terinjokes@gmail.com>2025-03-10 01:59:49 +0100
commit5e62aaf724e7f3d79427aebd1d5cdbbb3547265e (patch)
tree266556645a0ed5ecf1e5f7a248ea1adc6cf9fd13 /internal/db/sqlite/driver.go
parent[chore] remove vendor (diff)
downloadgotosocial-trunk.tar.xz
[feat] utilize system's libsqlite3HEADtrunknext
Add support for using the system's libsqlite3 library by adding a driver using "github.com/mattn/go-sqlite3".
Diffstat (limited to 'internal/db/sqlite/driver.go')
-rw-r--r--internal/db/sqlite/driver.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/sqlite/driver.go b/internal/db/sqlite/driver.go
index 203edaff3..e659d1ffa 100644
--- a/internal/db/sqlite/driver.go
+++ b/internal/db/sqlite/driver.go
@@ -15,7 +15,7 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
-//go:build !moderncsqlite3 && !nowasm
+//go:build !moderncsqlite3 && !nowasm && !libsqlite3
package sqlite