Alexander "Arav" Andreev
c7fe073623
Ditched JSON configuration file. Replaced with simple key = value format. Added indented_output option to format output with indent.
10 lines
278 B
Go
10 lines
278 B
Go
package main
|
|
|
|
import "errors"
|
|
|
|
// ErrNotFound occurs when a process is not presented in a list
|
|
var ErrNotFound = errors.New("process is not on list")
|
|
|
|
// ErrIsOnList occurs when a process is already presented in a list
|
|
var ErrIsOnList = errors.New("process is already on list")
|