fn resolve_connectors<'a>(
registry: &'a ConnectorRegistry,
connector_arg: &str,
) -> Result<Vec<&'a dyn Connector>>Expand description
Resolve a connector argument into a filtered list of connectors to scan.
The registry contains all connectors (built-in + custom). This function
filters them based on the user’s connector argument.
§Supported Formats
| Input | Meaning |
|---|---|
"all" | Every registered connector |
"git" | All connectors of type "git" |
"filesystem" | All connectors of type "filesystem" |
"s3" | All connectors of type "s3" |
"script" | All connectors of type "script" |
"custom" | All connectors of type "custom" |
"git:platform" | Specific named instance |
"custom:myconn" | Specific named instance |