rclone/cmd/mountlib/daemon.go
2021-09-09 20:43:59 +03:00

16 lines
289 B
Go

// Daemonization interface for non-Unix variants only
//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
}