1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-06 00:03:32 +00:00
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
}