From 007e2de369f9fc26da3237646de14f2af5052ee8 Mon Sep 17 00:00:00 2001 From: ewy Date: Fri, 22 May 2026 16:54:49 +0200 Subject: initial commit --- storage/wasm.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 storage/wasm.go (limited to 'storage/wasm.go') diff --git a/storage/wasm.go b/storage/wasm.go new file mode 100644 index 0000000..dd0c5df --- /dev/null +++ b/storage/wasm.go @@ -0,0 +1,10 @@ +//go:build sqlite_wasm + +package storage + +import ( + // wasm driver + _ "github.com/ncruces/go-sqlite3/driver" +) + +var driver = "sqlite3" -- cgit v1.3.1