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

9 lines
147 B
Go

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