restic/cmd/restic/background.go
Alexander Neumann 83d1a46526 Moves files
2017-07-23 14:19:13 +02:00

9 lines
258 B
Go

// +build !linux
package main
// IsProcessBackground should return true if it is running in the background or false if not
func IsProcessBackground() bool {
//TODO: Check if the process are running in the background in other OS than linux
return false
}