Versions in this module Expand all Collapse all v0 v0.0.5 Mar 16, 2026 v0.0.2 Mar 15, 2026 Changes in this version + type DataSource interface + Get func(path string) (any, bool) + type EnvSource struct + Env map[string]string + func (e *EnvSource) Get(path string) (any, bool) + type Evaluator interface + AddSource func(name string, source DataSource) + Evaluate func(expr string) (any, error) + func NewEvaluator() Evaluator + type RequestSource struct + Body any + Cookies map[string]string + Headers map[string][]string + PathParams map[string]string + QueryParams map[string][]string + func (r *RequestSource) Get(path string) (any, bool) + type StateSource struct + Data map[string]any + func (s *StateSource) Get(path string) (any, bool)