1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-01-04 03:02:02 +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)
}