refactor: move ErrMisconfiguration to top level

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso
2025-07-25 18:44:27 +00:00
parent 5307388841
commit ecbbf77498
2 changed files with 13 additions and 9 deletions

7
errors.go Normal file
View File

@@ -0,0 +1,7 @@
package anubis
import "errors"
var (
ErrMisconfiguration = errors.New("[unexpected] policy: administrator misconfiguration")
)