]> Sergey Matveev's repositories - btrtrc.git/blob - storage/default-dir-piece-completion-other.go
Remove CGO build flags for pure-Go squirrel branch
[btrtrc.git] / storage / default-dir-piece-completion-other.go
1 //go:build wasm
2 // +build wasm
3
4 package storage
5
6 import (
7         "errors"
8 )
9
10 func NewDefaultPieceCompletionForDir(dir string) (PieceCompletion, error) {
11         return nil, errors.New("y ur OS no have features")
12 }