summaryrefslogtreecommitdiff
path: root/storage/cgo.go
diff options
context:
space:
mode:
Diffstat (limited to 'storage/cgo.go')
-rw-r--r--storage/cgo.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/storage/cgo.go b/storage/cgo.go
new file mode 100644
index 0000000..3549bc5
--- /dev/null
+++ b/storage/cgo.go
@@ -0,0 +1,10 @@
+//go:build sqlite
+
+package storage
+
+import (
+ // cgo driver
+ _ "github.com/mattn/go-sqlite3"
+)
+
+var driver = "sqlite3"