rclone/cmd/mountlib/daemon.go

17 lines
289 B
Go
Raw Normal View History

// Daemonization interface for non-Unix variants only
2021-09-09 12:25:25 +00:00
//go:build windows || plan9 || js
// +build windows plan9 js
package mountlib
import (
"log"
"runtime"
)
func startBackgroundMode() bool {
log.Fatalf("background mode not supported on %s platform", runtime.GOOS)
return false
}