Sign in
apache
/
casbin
/
refs/heads/beta
/
.
/
effect
/
effector_stream.go
blob: 5a1efc4825b51074de46524eaff001eea9ddce51 [
file
]
package effect
// EffectorStream is the interface for effector stream.
type EffectorStream interface {
Next() bool
Explain() []int
PushEffect(eft Effect) bool
}