Validates a FunctionsConfig.
(ctx context.Context, config FunctionsConfig)
| 92 | |
| 93 | // Validates a FunctionsConfig. |
| 94 | func ValidateFunctions(ctx context.Context, config FunctionsConfig) error { |
| 95 | _, err := CompileFunctions(ctx, config) |
| 96 | return err |
| 97 | } |
| 98 | |
| 99 | // Creates a functionImpl from a UserFunctionConfig. |
| 100 | func compileFunction(ctx context.Context, name string, typeName string, fnConfig *FunctionConfig) (*functionImpl, error) { |
no test coverage detected