12 lines
363 B
Go
12 lines
363 B
Go
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")
|
|
)
|