incus-mirror/shared/cliconfig/errors.go
Nathan Chase ed5778e5ef
shared/cliconfig: Don't needlessly use format string functions
Signed-off-by: Nathan Chase <ntc477@utexas.edu>
2025-05-23 01:43:38 -04:00

9 lines
221 B
Go

package cliconfig
import (
"errors"
)
// ErrNotLinux is returned when attempting to access the "local" remote on non-Linux systems.
var ErrNotLinux = errors.New("Can't connect to a local server on a non-Linux system")