Create from a config file path or inline ACL-compatible string. Auto-detects `.acl` file paths vs inline ACL-compatible config.
(config_source: impl Into<String>)
| 341 | /// |
| 342 | /// Auto-detects `.acl` file paths vs inline ACL-compatible config. |
| 343 | pub async fn new(config_source: impl Into<String>) -> Result<Self> { |
| 344 | let config = agent_bootstrap::load_code_config(config_source.into())?; |
| 345 | Self::from_config(config).await |
| 346 | } |
| 347 | |
| 348 | /// Create from a config file path or inline ACL-compatible string. |
| 349 | /// |
nothing calls this directly
no test coverage detected