2
0
mirror of synced 2025-02-24 06:38:14 +00:00
torrent/storage/default-dir-piece-completion-other.go
2021-06-23 17:24:50 +10:00

13 lines
201 B
Go

//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")
}