elph 0.0.7

Minimalist AI agent companion for coding
1
2
3
4
5
6
7
use crate::app::{EXIT_SUCCESS, ExitCode};
use crate::cli::DoctorArgs;

pub fn handle(args: &DoctorArgs) -> ExitCode {
    eprintln!("Doctor — not yet implemented (json: {})", args.json);
    EXIT_SUCCESS
}