incus-mirror/internal/server/instance/instance_errors.go
Nathan Chase 98037c535f
incusd: Don't needlessly use format string functions
Signed-off-by: Nathan Chase <ntc477@utexas.edu>
2025-08-11 01:13:09 -04:00

9 lines
147 B
Go

package instance
import (
"errors"
)
// ErrNotImplemented is the "Not implemented" error.
var ErrNotImplemented = errors.New("Not implemented")