mirror of
https://github.com/lxc/incus.git
synced 2026-02-06 03:46:32 +01:00
9 lines
147 B
Go
9 lines
147 B
Go
package instance
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// ErrNotImplemented is the "Not implemented" error.
|
|
var ErrNotImplemented = errors.New("Not implemented")
|