2018-03-02 13:30:04 +00:00
|
|
|
// Daemonization interface for non-Unix variants only
|
|
|
|
|
2021-09-09 12:25:25 +00:00
|
|
|
//go:build windows || plan9 || js
|
2021-01-03 00:05:52 +00:00
|
|
|
// +build windows plan9 js
|
2018-03-02 13:30:04 +00:00
|
|
|
|
|
|
|
package mountlib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
func startBackgroundMode() bool {
|
|
|
|
log.Fatalf("background mode not supported on %s platform", runtime.GOOS)
|
|
|
|
return false
|
|
|
|
}
|