forked from TrueCloudLab/restic
9 lines
215 B
Go
9 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
|
|
}
|