| 23 | namespace google::api::expr::runtime { |
| 24 | |
| 25 | absl::Status RegisterEqualityFunctions(CelFunctionRegistry* registry, |
| 26 | const InterpreterOptions& options) { |
| 27 | cel::RuntimeOptions runtime_options = ConvertToRuntimeOptions(options); |
| 28 | return cel::RegisterEqualityFunctions(registry->InternalGetRegistry(), |
| 29 | runtime_options); |
| 30 | } |
| 31 | |
| 32 | } // namespace google::api::expr::runtime |