mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 09:35:26 +01:00
16 lines
258 B
Go
16 lines
258 B
Go
// Daemonization interface for non-Unix variants only
|
|
|
|
// +build windows darwin,!cgo
|
|
|
|
package mountlib
|
|
|
|
import (
|
|
"log"
|
|
"runtime"
|
|
)
|
|
|
|
func startBackgroundMode() bool {
|
|
log.Fatalf("background mode not supported on %s platform", runtime.GOOS)
|
|
return false
|
|
}
|