pub fn ScanPathConfigure(
AppState: &Arc<ApplicationState>,
) -> Result<Vec<PathBuf>, String>Expand description
Configures extension scan paths by resolving paths from the executable directory.
§Arguments
AppState- The application state containing ExtensionScanPaths
§Returns
A Result indicating success or failure.
§Scan Path Configuration
This function adds the following default scan paths:
../Resources/extensions- Bundled extensions in app resources directoryextensions- Local extensions directory relative to executable
§Errors
Returns an error if ExtensionScanPaths mutex lock fails.