mirror of
https://github.com/lxc/incus.git
synced 2026-02-07 06:46:28 +01:00
9 lines
181 B
Go
9 lines
181 B
Go
package subprocess
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// ErrNotRunning is returned when performing an action against a stopped process.
|
|
var ErrNotRunning = fmt.Errorf("The process isn't running")
|