github.com/rclone/rclone@v1.66.1-0.20240517100346-7b89735ae726/fs/daemon_other.go (about)

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