Whether the integration's plugin is staged in agy's config.
()
| 193 | |
| 194 | /// Whether the integration's plugin is staged in agy's config. |
| 195 | fn plugin_present() -> bool { |
| 196 | Self::global_config_dir() |
| 197 | .map(|dir| Self::hooks_path(&dir).exists()) |
| 198 | .unwrap_or(false) |
| 199 | } |
| 200 | |
| 201 | /// Parse the common base fields and build a TurnEvent with the session |
| 202 | /// ID and transcript path populated. |
nothing calls this directly
no test coverage detected