github.com/ncw/rclone@v1.48.1-0.20190724201158-a35aa1360e3e/cmd/mountlib/daemon.go (about)

     1  // Daemonization interface for non-Unix variants only
     2  
     3  // +build windows
     4  
     5  package mountlib
     6  
     7  import (
     8  	"log"
     9  	"runtime"
    10  )
    11  
    12  func startBackgroundMode() bool {
    13  	log.Fatalf("background mode not supported on %s platform", runtime.GOOS)
    14  	return false
    15  }