sqlite_store_unsupported.go 286 B

12345678910
  1. //go:build !linux && !darwin && !windows && !s390 && !ppc64le && !mips64 && !sqlite
  2. // +build !linux,!darwin,!windows,!s390,!ppc64le,!mips64,!sqlite
  3. // limited GOOS due to modernc.org/libc/unistd
  4. package sqlite
  5. func init() {
  6. // filer.Stores = append(filer.Stores, &SqliteStore{})
  7. }