elph 0.0.7

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

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