2
0
mirror of synced 2025-02-24 14:48:27 +00:00
torrent/storage/default-dir-piece-completion-other.go

15 lines
336 B
Go

// Bolt piece completion is not available, and neither is sqlite.
//go:build (!cgo || nosqlite) && (noboltdb || wasm)
// +build !cgo nosqlite
// +build noboltdb wasm
package storage
import (
"errors"
)
func NewDefaultPieceCompletionForDir(dir string) (PieceCompletion, error) {
return nil, errors.New("y ur OS no have features")
}