1
mirror of https://github.com/rclone/rclone synced 2025-03-20 01:44:24 +01:00
2018-05-05 16:23:47 +01:00

16 lines
246 B
Go

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