mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 02:09:55 +08: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
|
||
|
}
|