Files
cloudly-min/.rclone_repo/cmd/mountlib/daemon.go
2020-01-13 03:37:51 +00:00

16 lines
246 B
Go
Executable File

// Daemonization interface for non-Unix variants only
// +build windows
package mountlib
import (
"log"
"runtime"
)
func startBackgroundMode() bool {
log.Fatalf("background mode not supported on %s platform", runtime.GOOS)
return false
}