mirror of
https://github.com/lxc/incus
synced 2026-08-02 05:26:46 +00:00
9 lines
221 B
Go
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")
|