github.com/divyam234/rclone@v1.64.1/fs/daemon_other.go (about)

     1  // Daemonization stub for non-Unix platforms (common definitions)
     2  
     3  //go:build windows || plan9 || js
     4  // +build windows plan9 js
     5  
     6  package fs
     7  
     8  // IsDaemon returns true if this process runs in background
     9  func IsDaemon() bool {
    10  	return false
    11  }