mirror of
https://github.com/lxc/incus
synced 2026-08-02 13:35:50 +00: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")
|