13 lines
225 B
Go
13 lines
225 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !windows
|
|
|
|
package osshare
|
|
|
|
import (
|
|
"tailscale.com/types/logger"
|
|
)
|
|
|
|
func SetFileSharingEnabled(enabled bool, logf logger.Logf) {}
|