List all available functions.
(self)
| 107 | return func(*args, **kwargs) |
| 108 | |
| 109 | def list_functions(self) -> Dict[str, Callable]: |
| 110 | """List all available functions.""" |
| 111 | if not self._loaded: |
| 112 | self.load_functions() |
| 113 | return self.functions.copy() |
| 114 | |
| 115 | def reload_functions(self) -> None: |
| 116 | """Reload all functions from the functions directory.""" |
no test coverage detected