mirror of
https://github.com/restic/restic.git
synced 2025-04-26 08:00:48 +00:00
10 lines
258 B
Go
10 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
|
|
}
|