mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-10-21 00:58:51 +08:00
sqlite: does not support non-linux/darwin/windows
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
// +build linux darwin windows
|
||||
|
||||
// limited GOOS due to modernc.org/libc/unistd
|
||||
|
||||
package sqlite
|
||||
|
||||
import (
|
||||
|
9
weed/filer/sqlite/sqlite_store_unsupported.go
Normal file
9
weed/filer/sqlite/sqlite_store_unsupported.go
Normal 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{})
|
||||
}
|
Reference in New Issue
Block a user