(ctx context.Context, script, fn string, params ...any)
| 21 | // Engine represents a scripting engine. |
| 22 | type Engine interface { |
| 23 | Run(ctx context.Context, script, fn string, params ...any) (func(target any) error, error) |
| 24 | } |
| 25 | |
| 26 | // AheadOfTimeEngine extends Engine with the capability of compiling the script ahead of time. |
no outgoing calls