1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-01 06:40:45 +02:00

sqlite: does not support non-linux/darwin/windows

This commit is contained in:
Chris Lu 2021-05-25 17:36:15 -07:00
parent dce1f02c9e
commit 67dd094b35
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,7 @@
// +build linux darwin windows
// limited GOOS due to modernc.org/libc/unistd
package sqlite
import (

View file

@ -0,0 +1,9 @@
// +build !linux,!darwin,!windows
// limited GOOS due to modernc.org/libc/unistd
package sqlite
func init() {
// filer.Stores = append(filer.Stores, &SqliteStore{})
}