mirror of
https://github.com/octoleo/restic.git
synced 2024-11-19 11:35:14 +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
|
|
}
|