Set the function registry
(mut self, function_registry: Arc<FunctionRegistry>)
| 119 | |
| 120 | /// Set the function registry |
| 121 | pub fn with_function_registry(mut self, function_registry: Arc<FunctionRegistry>) -> Self { |
| 122 | self.function_registry = Some(function_registry); |
| 123 | self |
| 124 | } |
| 125 | |
| 126 | /// Get the user session from session provider |
| 127 | pub fn get_session(&self) -> Option<Arc<std::sync::RwLock<UserSession>>> { |
no outgoing calls
no test coverage detected