fixed blocking issues

This commit is contained in:
Mazyar
2026-05-30 12:13:46 +03:30
parent ce2dc7a61b
commit cf1449b1f9
6 changed files with 349 additions and 131 deletions
+11
View File
@@ -0,0 +1,11 @@
package kanban
import "errors"
var (
// ErrAccessDenied is returned when the resource exists but does not belong to the caller.
ErrAccessDenied = errors.New("kanban: access denied")
// ErrWorkflowUnavailable is returned when GoRules is configured but cannot supply workflow data.
ErrWorkflowUnavailable = errors.New("kanban: workflow rules unavailable")
)