Files
rclone/fs/daemon_other.go
2025-08-22 00:07:58 +01:00

11 lines
221 B
Go

// Daemonization stub for non-Unix platforms (common definitions)
//go:build windows || plan9 || js || wasm
package fs
// IsDaemon returns true if this process runs in background
func IsDaemon() bool {
return false
}