Add untested plugin support

This commit is contained in:
2024-12-10 13:18:54 -05:00
parent 9a6607494f
commit 209270a179
2 changed files with 58 additions and 4 deletions

View File

@@ -2,10 +2,13 @@ package step
// Error enumerates errors common to this package.
type Error string; const (
ErrCircularInheritance Error = "circular inheritance"
ErrMetaMalformed Error = "metadata is malformed"
ErrMetaNeverClosed Error = "metadata is never closed"
ErrTypeMismatch Error = "type mismatch"
ErrCircularInheritance Error = "circular inheritance"
ErrMetaMalformed Error = "metadata is malformed"
ErrMetaNeverClosed Error = "metadata is never closed"
ErrTypeMismatch Error = "type mismatch"
ErrPluginBadSymbol Error = "plugin has an incorrect symbol"
ErrPluginNotOwnedByRoot Error = "plugin is not owned by the root user"
ErrInsufficientSystem Error = "the system cannot perform this action"
)
// Error fulfills the error interface.