mirror of
https://github.com/safing/portbase
synced 2025-09-01 18:19:57 +00:00
9 lines
202 B
Go
9 lines
202 B
Go
package osdetail
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotSupported = errors.New("not supported")
|
|
ErrNotFound = errors.New("not found")
|
|
ErrEmptyOutput = errors.New("command succeeded with empty output")
|
|
)
|