1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/runtime/core/expression.go

8 lines
118 B
Go
Raw Normal View History

2018-09-18 22:42:38 +02:00
package core
import "context"
type Expression interface {
Exec(ctx context.Context, scope *Scope) (Value, error)
}