(&self, dc: &mut DoctorCounters, ctx: &HealthcheckContext)
| 85 | } |
| 86 | |
| 87 | fn healthcheck(&self, dc: &mut DoctorCounters, ctx: &HealthcheckContext) { |
| 88 | eprintln!("\n\x1b[1mOpenCode integration\x1b[0m"); |
| 89 | doctor_check_config(dc, &ctx.home); |
| 90 | doctor_check_prompt(dc, &ctx.home); |
| 91 | } |
| 92 | |
| 93 | fn is_detected(&self, home: &Path) -> bool { |
| 94 | home.join(".config").join("opencode").is_dir() |
nothing calls this directly
no test coverage detected