diff options
author | 2025-03-10 00:11:39 +0100 | |
---|---|---|
committer | 2025-03-10 01:59:49 +0100 | |
commit | 5e62aaf724e7f3d79427aebd1d5cdbbb3547265e (patch) | |
tree | 266556645a0ed5ecf1e5f7a248ea1adc6cf9fd13 /internal/db/sqlite/errors.go | |
parent | [chore] remove vendor (diff) | |
download | gotosocial-5e62aaf724e7f3d79427aebd1d5cdbbb3547265e.tar.xz |
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/errors.go')
-rw-r--r-- | internal/db/sqlite/errors.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/sqlite/errors.go b/internal/db/sqlite/errors.go index 9429a1bcd..784f9ef2d 100644 --- a/internal/db/sqlite/errors.go +++ b/internal/db/sqlite/errors.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 |