mirror of
https://github.com/octoleo/restic.git
synced 2024-11-12 08:16:37 +00:00
10 lines
215 B
Go
10 lines
215 B
Go
|
// +build !linux
|
||
|
|
||
|
package termstatus
|
||
|
|
||
|
// IsProcessBackground reports whether the current process is running in the
|
||
|
// background. Not implemented for this platform.
|
||
|
func IsProcessBackground() bool {
|
||
|
return false
|
||
|
}
|