You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailscale/tailfs/automount_nondarwin.go

21 lines
419 B
Go

// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause
//go:build !darwin
package tailfs
// DefaultAutomountPath returns the default automount path. If blank, that
// means TailFS is disabled on this platform.
func DefaultAutomountPath() string {
return ""
}
func MountShares(location string, username string) {
// Do nothing.
}
func UnmountShares(location string) {
// Do nothing.
}