1
mirror of https://github.com/rclone/rclone synced 2025-03-22 04:24:24 +01:00
rclone/cmd/mountlib/daemon.go

16 lines
246 B
Go
Raw Normal View History

// 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
}