629bf2ad创建于 2023年12月18日历史提交
//go:build !linux && !darwin && !windows
// +build !linux,!darwin,!windows

package tools

import (
	"io"

	"github.com/git-lfs/git-lfs/v3/errors"
	"github.com/git-lfs/git-lfs/v3/tr"
)

func CheckCloneFileSupported(dir string) (supported bool, err error) {
	return false, errors.New(tr.Tr.Get("unsupported platform"))
}

func CloneFile(writer io.Writer, reader io.Reader) (bool, error) {
	return false, nil
}

func CloneFileByPath(_, _ string) (bool, error) {
	return false, nil
}