]> Sergey Matveev's repositories - btrtrc.git/blob - storage/default-dir-piece-completion-other.go
b6f561ca5b937b5d9b3798adb23068baedbf5e6b
[btrtrc.git] / storage / default-dir-piece-completion-other.go
1 // Bolt piece completion is not available, and neither is sqlite.
2 //go:build wasm || noboltdb
3 // +build wasm noboltdb
4
5 package storage
6
7 import (
8         "errors"
9 )
10
11 func NewDefaultPieceCompletionForDir(dir string) (PieceCompletion, error) {
12         return nil, errors.New("y ur OS no have features")
13 }