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

13 lines
201 B
Go
Raw Normal View History

2021-06-23 17:24:50 +10:00
//go:build wasm
// +build wasm
package storage
import (
"errors"
)
func NewDefaultPieceCompletionForDir(dir string) (PieceCompletion, error) {
return nil, errors.New("y ur OS no have features")
}