mirror of
https://github.com/lxc/incus.git
synced 2026-02-05 09:46:19 +01:00
11 lines
205 B
Go
11 lines
205 B
Go
//go:build !windows
|
|
|
|
package subprocess
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// ErrNotRunning is returned when performing an action against a stopped process.
|
|
var ErrNotRunning = errors.New("The process isn't running")
|